body {
    --scheme-1: #4b4e75;
    --scheme-8: #2d2f46;
}

#search {
    width: 100%;
    background-color: var(--scheme-2);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    position: relative;
    margin-top: -80px;
    padding-top: 80px;
    min-height: max-content;
}

#search .filters {
    display: none;
}

#search * {
    transition-duration: 0.2s;
}

#search_btn {
    display: flex;
    padding: 10px 15px;
    border-radius: 8px;
    background-color: #565656;
    color: var(--scheme-2);
    font-size: 100%;
    transition-duration: 0.15s;
    box-shadow: 0 0 8px #565656;
    margin-top: 15px;
}

#search_btn i {
    margin-right: 5px;
}

#search_btn:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

#search .search-title {
    margin: 5vh 0 8vh 0;
    font-family: inherit;
    text-align: center;
    font-size: calc((5vh + 5vw) / 2);
    font-weight: 500;
    color: var(--scheme-6);
}

.design1 .search-title {
    margin-bottom: 20px;
}

#search .search-text {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: var(--scheme-34);
    font-weight: lighter;
    font-size: 190%;
}

.design1 .search-text {
    position: absolute;
    width: 50%;
    left: 0%;
    padding-top: 52px !important;
    text-align: center;
    padding: 52px 32px;
    font-size: calc((3.5vh + 3.5vw) / 2);
}

#search .categories {
    opacity: 0;
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    margin: 20px 0;
    padding: 20px;
    border: solid #333333;
    border-width: 2px 0;
    overflow: hidden;
}

#search .categories .ctg_btn {
    width: 100%;
    padding: 12px;
    font-size: 100%;
    background-color: transparent;
    margin: 6px 0;
    color: var(--scheme-6);
}

#search .categories .ctg_btn:hover {
    transform: scale(1.5);
}

.design1 .categories {
    opacity: 1 !important;
    transform: scale(1) !important;
}

#search .sections {
    opacity: 0;
    transform: scale(0);
    position: absolute;
    left: 10%;
    width: 80%;
    padding: 20px 0;
    top: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.design2 .sections {
    opacity: 1 !important;
    transform: scale(1) !important;
}

#search .sections .sct_btn {
    display: none;
    opacity: 0;
    transform: scale(0);
    font-weight: lighter;
    padding: 16px;
    min-width: 200px;
    margin: 12px;
    background-color: #565656;
    color: var(--scheme-2);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    clip-path: polygon(10% 0, 90% 0, 100% 30%, 100% 70%, 90% 100%, 10% 100%, 0% 70%, 0% 30%);
}

#search .sections .sct_btn.show {
    opacity: 1;
    transform: scale(1);
}

#search .sct_btn:hover {
    filter: hue-rotate(10deg) brightness(150%);
}

.design2 .search-title {
    opacity: 0;
    margin: 0 !important;
}



#search_back_btn {
    font-size: calc((5vh + 5vw) / 2);
    position: absolute;
    left: 40px;
    color: var(--scheme-6);
    top: 120px;
    border-radius: 50%;
    background-color: transparent;
    width: 64px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.design1 #search_back_btn {
    opacity: 0;
}

#search_back_btn i:first-of-type {
    margin-right: -8px;
    transition-duration: 0.5s;
}

#search_back_btn i:last-of-type {
    transition-duration: 0.15s;
    margin-right: 0;
}

#search_back_btn:hover i {
    margin-right: 0;
    margin-left: -13px;
}

#search_back_btn:hover i:last-of-type {
    margin-right: 8px;
    margin-left: 0px;
    transition-duration: 0.5s;
}

#search_back_btn:hover i:first-of-type {
    transition-duration: 0.15s;
}

#search .choosen_section p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2vw;
    padding: 12px 20px;
    width: 25vw;
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
    margin-left: 2px;
    background-color: #565656;
    color: #ffffff;
    text-align: center;
    min-height: 48px;
}

#search .choosen_section {
    border: 6px double;
    border-color: transparent transparent transparent #565656;
    position: absolute;
    left: 6%;
    top: calc(90px + 10vh + 6vw);
    opacity: 0;
    transform: scale(0);
    display: flex;
}

#search .choosen_subsection p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2vw;
    padding: 12px 20px;
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%);
    background-color: #565656;
    margin-left: 2px;
    color: #ffffff;
    text-align: center;
    height: 48px;
    min-width: 300px;
}

#search .choosen_subsection {
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%, 25px 50%);
    position: absolute;
    left: calc(6% + 25vw);
    top: calc(96px + 10vh + 6vw);
    overflow: hidden;
    min-height: 48px;
    min-width: 300px;
    opacity: 0;
    display: none;
}

.design2 .search-text {
    width: 100%;
    padding-top: 0;
    font-size: 2vw;
    text-align: center;
}

#search .subsections {
    opacity: 0;
    width: 70%;
    display: none;
    left: 15%;
    position: absolute;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    top: 170px;
}

#search .subsections .sbs_btn {
    display: none;
    opacity: 0;
    min-width: 300px;
    padding: 12px;
    font-size: 1.5vw;
    clip-path: polygon(5% 0, 95% 0, 100% 30%, 100% 70%, 95% 100%, 5% 100%, 0% 70%, 0% 30%);
    background-color: #676767;
    color: #ffffff;
    margin: 4px;
}

#search .subsections .sbs_btn.show {
    opacity: 1;
}

#search .subsections .sbs_btn:hover {
    background-color: #343434;
}

.design3 .choosen_section {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.design4 .choosen_section {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.design4 .choosen_subsection {
    opacity: 1 !important;
    display: flex !important;
}

.design3 .subsections {
    opacity: 1 !important;
    display: flex !important;
}

.design3 .search-title {
    opacity: 0;
    margin: 0 !important;
}

.design3 .search-text {
    width: 100%;
    font-size: 2.5vw;
    text-align: center;
    left: 10%;
    margin-top: 30px;
}



.design4 .search-text {
    width: 100%;
    padding: 0 20px;
    margin-top: 100px;
    font-size: calc((3.5vh + 3.5vw) / 2);
    text-align: center;
    left: 10%;
}


.design4 .search-title {
    opacity: 0;
    margin: 0 !important;
}



#search .content {
    width: 100%;
    position: relative;
    min-height: 170px;
}

#search .filters {
    width: 100%;
    padding: 0 5% 100px 5%;
    padding-bottom: 0;
}

#search .account_types {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 750px;
    flex-wrap: wrap;
    height: 100px;
}

#search .filters {
    opacity: 0;
    transform: scale(0);
    justify-content: center;
}

#search .flt-block {
    display: none;
    opacity: 0;
}

.design4 .filters {
    opacity: 1 !important;
    transform: scale(1) !important;
}

#search .radio_cont {
    display: flex;
    align-items: center;
    /* width: 50%; */
    justify-content: center;
    flex-direction: column;
    position: relative;
}

#search .radio_cont p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    padding-left: 35px;
    background-color: #565656;
    border-radius: 12px;
    font-size: 74%;
}

#main {
    z-index: 1;
    opacity: 0;
}

#main h1 {
    width: 80%;
    text-align: left;
    background: -webkit-linear-gradient(45deg, #ffffff, #aaeeff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 36px;
}

#main a#start {
    padding: 6px 16px;
    margin-top: 24px;
    display: inline;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    border-radius: 12px;
    font-size: 100%;
    text-decoration: underline;
}

section#main {
    /* bg :  */
    background-image: radial-gradient(#000100, #4b4e75 100vw);
    transform-style: preserve-3d;
    perspective: 500px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 10px #000000;
}

span.hex {
    transform-style: preserve-3d;
    transition-duration: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc((13vw + 13vh) / 2);
    height: calc((13vw + 13vh) / 2);
    filter: drop-shadow(0px 0px 10px #6600ff);
    /* animation: centerHex 10s infinite linear; */
    transform-origin: center center;
}

@keyframes centerHex {
    0% {
        filter: drop-shadow(0px 0px 10px #6600ff);
    }

    20% {
        filter: drop-shadow(0px 0px 10px #ff00ff);
    }

    40% {
        filter: drop-shadow(0px 0px 10px #0088ff);
    }

    60% {
        filter: drop-shadow(0px 0px 10px #00ff00)
    }

    80% {
        filter: drop-shadow(0px 0px 10px #ffffff)
    }

    100% {
        filter: drop-shadow(0px 0px 10px #6600ff);
    }
}

span.hex_cont {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    perspective: 500px;
}

span.hex_border {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    position: absolute;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #454545;
}

span.hex_content {
    transform-style: preserve-3d;
    width: 90%;
    height: 90%;
    cursor: pointer;
}

#hex_Logo {
    background-size: cover;
    transform-origin: center center;
    background-color: #6600ff;
}

span.hex:hover .hex_content {
    transform: scale(0.9) !important;
}

#logo-hex.active .hex_content {
    transform: scale(0.9) !important;
}

span.hex_element {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 100% !important;
}

span.hex_element.layer1 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10vw;
    transform: scale(0);
    background-color: #efefef;
}

span.hex_element.layer2 {
    transition-delay: 0.15s !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10vw;
    transform: scale(0);
    background-color: #efefef;
}

span.hex_element.layer3 {
    transition-delay: 0.3s !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10vw;
    transform: scale(0);
    background-color: #efefef;
}

#hex_poly1 {
    left: calc((-7.5vw + -7.5vh) / 2) !important;
    top: calc((-11.5vw + -11.5vh) / 2) !important;
}

#hex_poly2 {
    left: calc((-15vw + -15vh) / 2) !important;
    top: calc((0vw + 0vh) / 2) !important;
}

#hex_poly3 {
    left: calc((7.5vw + 7.5vh) / 2) !important;
    top: calc((11.5vw + 11.5vh) / 2) !important;
}

#hex_poly4 {
    left: calc((15vw + 15vh) / 2) !important;
    top: calc((0vw + 0vh) / 2) !important;
}

#hex_poly5 {
    left: calc((7.5vw + 7.5vh) / 2) !important;
    top: calc((-11.5vw + -11.5vh) / 2) !important;
}

#hex_poly6 {
    left: calc((-7.5vw + -7.5vh) / 2) !important;
    top: calc((11.5vw + 11.5vh) / 2) !important;
}

#hex_poly11 {
    left: calc((-22.5vw + -22.5vh) / 2) !important;
    top: calc((-11.5vw + -11.5vh) / 2) !important;
}

#hex_poly22 {
    left: calc((-30vw + -30vh) / 2) !important;
    top: calc((0vw + 0vh) / 2) !important;
}

#hex_poly33 {
    left: calc((22.5vw + 22.5vh) / 2) !important;
    top: calc((11.5vw + 11.5vh) / 2) !important;
}

#hex_poly44 {
    left: calc((30vw + 30vh) / 2) !important;
    top: calc((0vw + 0vh) / 2) !important;
}

#hex_poly55 {
    left: calc((22.5vw + 22.5vh) / 2) !important;
    top: calc((-11.5vw + -11.5vh) / 2) !important;
}

#hex_poly66 {
    left: calc((-22.5vw + -22.5vh) / 2) !important;
    top: calc((11.5vw + 11.5vh) / 2) !important;
}

#hex_poly111 {
    left: calc((-15vw + -15vh) / 2) !important;
    top: calc((-22.5vw + -22.5vh) / 2) !important;
}

#hex_poly222 {
    left: calc((-0vw + -0vh) / 2) !important;
    top: calc((-22.5vw + -22.5vh) / 2) !important;
}

#hex_poly333 {
    left: calc((15vw + 15vh) / 2) !important;
    top: calc((22.5vw + 22.5vh) / 2) !important;
}

#hex_poly444 {
    left: calc((0vw + 0vh) / 2) !important;
    top: calc((22.5vw + 22.5vh) / 2) !important;
}

#hex_poly555 {
    left: calc((15vw + 15vh) / 2) !important;
    top: calc((-22.5vw + -22.5vh) / 2) !important;
}

#hex_poly666 {
    left: calc((-15vw + -15vh) / 2) !important;
    top: calc((22.5vw + 22.5vh) / 2) !important;
}


#logo-hex.active span.hex_element.layer1 {
    transform: scale(1);
}

#logo-hex.active span.hex_element.layer2 {
    transform: scale(1);
}

#logo-hex.active span.hex_element.layer3 {
    transform: scale(1);
}

/* =================== Filters =================== */

#search_result {
    background-color: var(--scheme-2);
}

.filters {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    padding: 20px;
}


.flt-block.active .flt-prop-cont {
    transform: scale(1);
}

.flt-block {
    display: flex;
}

.flt-block.show {
    display: none;
}

.detail_search {
    display: flex;
    width: 90%;
    position: relative;
    border: 2px solid #565656;
    margin: 40px 0;
    z-index: 0;
}

.select_style2 .SELECT_.OPENED_ .OPTIONS_ {
    z-index: 111111111;
}

#detail_search {
    display: flex;
    padding: 10px 15px;
    background-color: var(--scheme-2);
    color: var(--scheme-6);
    font-size: 140%;
    border-radius: 8px;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    z-index: 0;
    align-items: center;
}

#detail_search i {
    margin-left: 5px;
}

#detail_search:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

#detail_search.active i {
    transform: rotateX(180deg);
    transform-origin: center;
}

.flt_sct.details {
    height: 0;
    overflow: hidden;
}

.flt_sct.details.active {
    height: fit-content;
}

.search {
    display: flex;
    width: 70%;
    justify-content: flex-end;
}

#search_result {
    background-color: var(--scheme-2);
}

#search_result .cannot_find_img {
    width: 100%;
    height: 400px;
    background-color: var(--scheme-2);
    object-fit: contain;
}



@media only screen and (max-width: 700px) {
    #search .search-text {
        font-size: 150%;
    }

    .design2 .search-text {
        margin-top: 50px !important;
        padding: 12px !important;
        background-color: var(--scheme-df);
    }


    #search .account_types {}
}


.price_block {
    width: 100%;
    justify-content: space-between;
    max-width: 750px;
    display: flex;
    color: var(--scheme-6);
    margin: 35px auto;
    margin-bottom: 0;
}

.price_block .price_row {
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 45px;
    width: calc(33% - 10px);
    justify-content: center;
    z-index: 12312312;
    margin: 0 5px;
}

#price {
    width: calc(66% - 10px);
    display: flex;
}

.price_row .price_radio_cont {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.price_row .price_radio_cont.hide {
    display: none;
}

.price_radio_cont .price_radio_name {
    padding: 12px 20px;
    padding-left: 35px;
    background-color: #565656;
    border-radius: 8px;
    color: #fff;
    width: 100%;
    text-align: center;
}

.price_input {
    display: flex;
    align-items: center;
    /* overflow: hidden; */
    border: 2px solid var(--scheme-78);
    border-radius: 8px;
    /* margin-left: 84px; */
    width: 100%;
    height: 43px;
    justify-content: space-between;
    background-color: #45454540;
}

.price_input.hide {
    display: none;
}

.price_input .select_style2 {
    width: 80px;
    border-left: 1px solid #565656;
    padding-left: 5px;
    height: 100%;
}

.price_input .SELECT_ {
    width: 100%;
}

.price_input .SELECTED_EL {
    width: 100%;
    padding: 8px 0 !important;
}

.price_input .OPTIONS_ {
    left: unset !important;
    right: 0;
    width: calc(100% + 5px);
}

.price_input .OPTION_ {
    padding: 6px 12px;
    padding-left: 5px;
}

.prc_inp {
    padding: 6px 7px 6px 16px;
    width: calc(58% - 80px);
    font-size: 100%;
    color: var(--scheme-6);
    background-color: transparent;
}

.prc_inp:first-of-type {
    border-right: 1px solid #000;
}

.prc_inp::placeholder {
    color: #000;
}

#price_type_slct {
    font-size: 100%;
    padding: 6px 12px;
    background-color: transparent;
    color: var(--scheme-6);
    border-left: 2px solid var(--scheme-78);
}


@media only screen and (max-width: 700px) {
    .ads_cont{
        width: 90%;
    }

    
    
}