body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
    font-family: Inter;
    /* border: 1px solid red; */
}

.header {
    border: 1px solid red;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
  }
  
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
  }



  

header {
    z-index: 999;
    position: relative;
    height: 120px;
    /* border: 1px solid red; */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}








.main_tabs {
    margin: 0 auto;
    width: 664px;
    height: 64px;
    background: rgba(237, 237, 243, 1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    margin-top: 60px;
}

.main_tabs .overlay {
    position: absolute;
    background-color: rgba(255, 255, 255, 1);
    min-width: 324px;
    border-radius: 16px;
    height: 48px;
    transform: translateX(-50%);
    transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main_tabs .overlay.active {
    transform: translateX(50%);
}

.main_tabs button {
    z-index: 1;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 16px;
    /* border: 1px solid red; */
    min-width: 324px;
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.main_tabs button img {
    margin-left: 5px;
}

.main_tabs button.active {
    color: rgba(0, 0, 0, 1);
}

.main_tabs button {
    color: rgba(83, 83, 83, 1);
}







.info_tabs {
    display: inline-block;
    margin-bottom: 60px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.info_tabs img.item_2 {
    position: absolute;
    top: 25%;
    right: -12%;
}

.info_tabs .item {
    width: 664px;
    height: 680px;
    border-radius: 34px;
    /* border: 1px solid red; */
    position: relative;
    overflow: hidden;
    background-color: black;
    padding: 40px;
    margin-top: 40px;
    position: relative;
    box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.26);

}

.info_tabs .item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: .8;
}

/* .info_tabs .item .overl {
    background: linear-gradient(180deg, #000000 -10.15%, rgba(0, 0, 0, 0) 31.47%), linear-gradient(0deg, #000000 -2.65%, rgba(0, 0, 0, 0) 38.97%);

} */

.info_tabs .item p {
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    z-index: 2;
    position: relative;
}


.info_tabs .item .buttons {
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    bottom: 50px;
    /* transform: translateX(50%); */
    width: 100%;
}

.info_tabs .item .buttons button {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    border-radius: 16px;
    border: none;
    background-color: transparent;
    height: 56px;
    cursor: pointer;
}

.info_tabs .item .buttons a.run {
    background: rgba(102, 107, 207, 1);
    width: 286px;
    text-align: center;
    text-decoration: none;
}

.info_tabs .item .buttons button.more {
    width: 153px;
    background-color: rgba(121, 121, 121, 0.308);
    backdrop-filter: blur(10px);
    margin-right: 5px;
}






















.forgot {
    width: 100%;
    margin-top: 10px;
}
.forgot a {
    font-size: 12px;
    font-weight: 500;
    color: rgba(102, 107, 207, 1);
    text-decoration: none;
    margin-left: 15px;

}





























footer {
    /* margin-top: 120px;
    position: absolute;
    bottom: 0;
    left: 0; */
    height: 120px;
    width: 100%;
    box-shadow: 0px -10px 24px 10px rgba(0, 0, 0, 0.02);
    display: flex;

}


footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

footer .alert {
    background-color: #EFF0F7;
    height: 88px;
    min-width: 100px;
    border-radius: 24px;
    padding: 16px 16px 16px 32px;
    display: flex;
    align-items: center;
}

footer .alert a {
    border: 1px solid rgba(41, 41, 41, 1);
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    padding: 16px 56px;
    text-decoration: none;
    color: rgba(41, 41, 41, 1);
    margin-left: 32px;
}

footer .alert span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(41, 41, 41, 1);
    text-align: center;
}

footer .links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .links a {
    color: rgba(41, 41, 41, 1);
    font-size: 10px;
    font-weight: 500;
    opacity: .5;
    text-decoration: none;
}

footer .links a:hover {
    text-decoration: underline;
}










.dark_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.555);
    z-index: 2;
    display: none;
}

.dark_overlay .big_modal {
    transition: .4s;
    background: rgba(255, 255, 255, 1);
    width: 100%;
    position: absolute;
    /* border: 1px solid red; */
    min-height: 300px;
    border-radius: 56px 56px 0 0;
    z-index: 2;
    position: absolute;
    top: 150px;
    left: 0;
    transform: translateY(200px);
    /* display: none; */
}

.dark_overlay .big_modal.active {
    transform: translateY(0px);
}

.dark_overlay .big_modal .close {
    position: absolute;
    right: 55px;
    top: -30px;
    cursor: pointer;
    transition: .2s;
}

.dark_overlay .big_modal .close:hover {
    transform: scale(1.2);
}


.dark_overlay .big_modal h1 {
    font-size: 64px;
    font-weight: 700;
    color: rgba(41, 41, 41, 1);
    line-height: 64px;
    text-align: center;
    margin-top: 110px;
}

.dark_overlay .big_modal p.description {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color:rgba(67, 67, 67, 1);
    text-align: center;
}









.sliderSection {
    margin-top: 30px
}
.slider {
    display: flex;
    width: 100%;
    /* border: 1px solid red; */
    overflow: hidden;
    margin-top: 80px;
}

.slider .slider_wrap {
    /* border: 1px solid green; */
    display: flex;
}

.slider .slider_wrap .item {
    width: 400px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.slider .slider_wrap .item img {
    width: 120%;
    height: auto;
}







.button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 56px;
}






.btn {
    /* width: 297px; */
    text-decoration: none;
    height: 56px;
    top: 964px;
    left: 716px;
    padding: 16px 56px 16px 56px;
    border-radius: 16px;
    background: rgba(102, 107, 207, 1);
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

/* 
h2 {
    margin-top: 168px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(41, 41, 41, 1);
    text-align: center;
    margin-bottom: 0;
}
 */










.reviews {
    margin-top: 80px;

}


/* .reviews .review_line[data-id="1"] .review_line_wrap {
    transform: translateX(-50%);
} */


.reviews .review_line {
    /* border: 1px solid red; */
    margin-top: 8px;
    overflow: hidden;
}

.reviews .review_line .review_line_wrap {
    display: flex;

}


.reviews .item {
    min-width: 423px;
    width: 423px;
    height: 180px;
    background: rgba(243, 243, 247, 1);
    border-radius: 16px;
    padding: 24px;
    margin-right: 8px;
}


.reviews .item .title {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    color: rgba(41, 41, 41, 1);
}


.reviews .item .title .rating {

}

.reviews .item .title .rating img {
    margin-left: -3px;
}

.reviews .item p.name {
    margin: 0;
    margin-left: 10px;

}


.reviews .item p.text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(67, 67, 67, 1);
    margin-top: 10px;
}








.bx-wrapper {
    
    width: 392px;
    box-shadow: none!important;
    margin: 0 auto;
    margin-top: 80px;
}

.bx-pager a {
    width: 10px;
    height: 10px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
}
.bx-pager a.active {
    width: 20px;
}
.bx-pager a .progress {
    height: 10px;
    background: #000;
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background-color: rgba(222, 222, 222, 1)!important;
    height: 8px!important;
    width: 24px!important;
    transition: .4s;
}

.bx-wrapper .bx-pager.bx-default-pager a.active {
    background-color: rgba(41, 41, 41, 1)!important;
    width: 56px!important;
}

.bx-wrapper .bx-controls-direction a.bx-prev {
    width: 48px!important;
    height: 48px!important;
    background: url(/img/prev_active.png) no-repeat center!important;
    left: -90px;
}

.bx-wrapper .bx-controls-direction a.bx-prev.inactive {
    width: 48px!important;
    height: 48px!important;
    background: url(/img/prev_inactive.png) no-repeat center!important;
}

.bx-wrapper .bx-controls-direction a.bx-next {
    width: 48px!important;
    height: 48px!important;
    background: url(/img/next_active.png) no-repeat center!important;
    right: -90px;
}

.bx-wrapper .bx-controls-direction a.bx-next.inactive {
    width: 48px!important;
    height: 48px!important;
    background: url(/img/next_inactive.png) no-repeat center!important;
}








.bigBarInfo .bx-wrapper .bx-controls-direction a.bx-prev {
    width: 32px!important;
    height: 32px!important;
    background: url(/img/next_active.png) no-repeat cover center!important;
    left: 10px;
    opacity: .7;
    border-radius: 50%;
}

.bigBarInfo .bx-wrapper .bx-controls-direction a.bx-prev.inactive {
    width: 48px!important;
    height: 48px!important;
    background: url(/img/prev_inactive.png) no-repeat center!important;
}

.bigBarInfo .bx-wrapper .bx-controls-direction a.bx-next {
    width: 32px!important;
    height: 32px!important;
    background: url(/img/next_active.png) no-repeat cover center!important;
    right: 10px;
    opacity: .7;
    border-radius: 50%;
}

.bigBarInfo .bx-wrapper .bx-controls-direction a.bx-next.inactive {
    width: 48px!important;
    height: 48px!important;
    background: url(/img/next_inactive.png) no-repeat center!important;
}
















.bx-wrapper .slide {
    position: relative;
}
.bx-wrapper .slide p {
    position: absolute;
    bottom: 45px;
    left: 0;
    width: 100%;
    /* left: 50%;
    transform: translateX(-50%); */
    font-size: 24px;
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    text-align: center;
}





.ol-control {
    background-color: transparent!important;
}

.ol-zoom {
    top: 49%!important;
    right: 10px!important;
    left: auto!important;
    
}

.ol-zoom-in {
    background: rgba(255, 255, 255, 1)!important;
    border: none!important;
    width: 48px!important;
    height: 48px!important;
    border-radius: 16px 16px 0 0!important;
    margin: auto!important;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.15)!important;
    cursor: pointer!important;
}

.ol-zoom-in:hover {
    outline: none!important;
}

.ol-zoom-in:focus {
    outline: none!important;
}

.ol-control button {
    font-size: 29px!important;
    color: black!important;
}

.ol-zoom-out {
    background: rgba(255, 255, 255, 1)!important;
    border: none!important;
    width: 48px!important;
    height: 48px!important;
    border-radius: 0 0 16px 16px !important;
    margin: auto!important;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.15)!important;
    cursor: pointer!important;
}

.ol-zoom-out:hover {
    outline: none!important;
}

.ol-zoom-out:focus {
    outline: none!important;
}

#map1 canvas {
    filter: grayscale(100%) brightness(112%);
  }
  
.blue_filter {

    background-color: rgba(207, 211, 211, 0.425);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
}
#map2 {
    z-index: 1;
}


.map_section {
    width: 100%;
    margin-top: 150px;
    margin-bottom: 120px;
}

.map_section .map_item {
    padding: 40px;
    width: 1072px;
    height: 680px;
    background-color: rgba(243, 243, 247, 1);
    border-radius: 32px;
    margin: 0 auto;
    display: flex;
}

.map_section .map_item .info {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    margin-left: 40px;
}


.map_section .map_item .info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
}


.map_section .map_item .info p {
    color: rgba(41, 41, 41, 1);
    font-size: 16px;
    font-weight: 500;
    margin-top: 24px;
    margin-bottom: 0;
}

.map_section .map_item .info a {
    margin-top: 24px;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-weight: 600;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}















.transparent_btn {
    border: 1px solid rgba(0, 0, 0, 1);
    border-radius: 16px;
    color: rgba(0, 0, 0, 1);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    width: 178px;
    height: 56px;
    cursor: pointer;
    text-decoration: none;
}

.transparent_btn img {
    margin-right: 12px;
}


input.transparent {
    width: 392px;
    border-radius: 16px;
    height: 56px;
    border: 1px solid rgba(0, 0, 0, 1);
    background-color: transparent;
    margin-top: 8px;
    padding: 0 16px;
}

input.transparent::placeholder {
    color: rgba(80, 80, 80, 1);
    font-size: 14px;
    font-weight: 600;
  }
  
  /* Для Internet Explorer 10-11 */
  input.transparent:-ms-input-placeholder {
    color: rgba(80, 80, 80, 1);
    font-size: 14px;
    font-weight: 600;
  }
  
  /* Для Internet Explorer 10-11 */
  input.transparent::-ms-input-placeholder {
    color: rgba(80, 80, 80, 1);
    font-size: 14px;
    font-weight: 600;
  }


  section.login {
    width: 100%;
    position: relative;
    
}

section.login img.left {
    position: absolute;
    left: 0;
    top: 0;
    width: 450px;
}

section.login img.right {
    position: absolute;
    right: 0;
    top: 0;
    width: 450px;
}

section.login .main {
    width: 392px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.login .main .back_btn {
    margin-top: 28px;
}

section.login .main h1 {
    color: rgba(0, 0, 0, 1);
    font-size: 40px;
    font-weight: 600;
    margin: 56px 0;
}

section.login .main button.google {
    width: 392px;
    height: 72px;
}

section.login .main button.google img {
    margin-right: 18px;
}

section.login .main span.or {
    position: relative;
    display: inline-block;
    margin: 32px 0;
}

section.login .main span.or::before,
section.login .main span.or::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 167.5px; /* Длина полоски */
    height: 1px; /* Толщина полоски */
    background-color: #000; /* Цвет полоски */
    opacity: .2;
}

section.login .main span.or::before {
    right: 100%; /* Положение полоски слева */
    margin-right: 10px; /* Отступ полоски от текста */
}

section.login .main span.or::after {
    left: 100%; /* Положение полоски справа */
    margin-left: 10px; /* Отступ полоски от текста */
}



section.login .main form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.login .main form input[type="submit"] {
    width: 392px;
    margin-top: 56px;
}

section.login .main form .input_wrap {
    position: relative;
    display: flex;
    align-items: center;
}

section.login .main form .input_wrap img {
    position: absolute;
    right: 20px;
    cursor: pointer;
    margin-top: 10px;
}

section.login .main span.politics {
    color: rgba(80, 80, 80, 1);
    font-size: 12px;
    font-weight: 500;
    margin-top: 24px;
    text-align: center;
}

section.login .main span.politics a {
    color: rgba(102, 107, 207, 1);
    text-decoration: none;
}

section.login .main span.politics a:hover {
    text-decoration: underline;
}


section.login .main p.signin {
    color: rgba(80, 80, 80, 1);
    font-size: 14px;
    font-weight: 600;
    margin-top: 24px;
    text-align: center;
}

section.login .main p.signin a {
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

section.login .main p.signin a:hover {
    text-decoration: underline;
}










section.register {
    width: 100%;
    position: relative;
    
}

section.register img.left {
    position: absolute;
    left: 0;
    top: 0;
    width: 450px;
}

section.register img.right {
    position: absolute;
    right: 0;
    top: 0;
    width: 450px;
}

section.register .main {
    width: 392px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.register .main .back_btn {
    margin-top: 28px;
}

section.register .main h1 {
    color: rgba(0, 0, 0, 1);
    font-size: 40px;
    font-weight: 600;
    margin: 39px 0;
}

section.register .main button.google {
    width: 392px;
    height: 72px;
}

section.register .main button.google img {
    margin-right: 18px;
}

section.register .main span.or {
    position: relative;
    display: inline-block;
    margin: 32px 0;
}

section.register .main span.or::before,
section.register .main span.or::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 167.5px; /* Длина полоски */
    height: 1px; /* Толщина полоски */
    background-color: #000; /* Цвет полоски */
    opacity: .2;
}

section.register .main span.or::before {
    right: 100%; /* Положение полоски слева */
    margin-right: 10px; /* Отступ полоски от текста */
}

section.register .main span.or::after {
    left: 100%; /* Положение полоски справа */
    margin-left: 10px; /* Отступ полоски от текста */
}



section.register .main form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.register .main form input[type="submit"] {
    width: 392px;
    margin-top: 56px;
}

section.register .main form .input_wrap {
    position: relative;
    display: flex;
    align-items: center;
}

section.register .main form .input_wrap img {
    position: absolute;
    right: 20px;
    cursor: pointer;
    margin-top: 10px;
}

section.register .main span.politics {
    color: rgba(80, 80, 80, 1);
    font-size: 12px;
    font-weight: 500;
    margin-top: 24px;
    text-align: center;
}

section.register .main span.politics a {
    color: rgba(102, 107, 207, 1);
    text-decoration: none;
}

section.register .main span.politics a:hover {
    text-decoration: underline;
}


section.register .main p.signin {
    color: rgba(80, 80, 80, 1);
    font-size: 14px;
    font-weight: 600;
    margin-top: 24px;
    text-align: center;
}

section.register .main p.signin a {
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

section.register .main p.signin a:hover {
    text-decoration: underline;
}























section.register_company {
    width: 100%;
    position: relative;
}

section.register_company img.left {
    position: absolute;
    left: 0;
    top: 0;
    width: 450px;
}

section.register_company img.right {
    position: absolute;
    right: 0;
    top: 0;
    width: 450px;
}

section.register_company .main {
    width: 456px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.register_company .main .back_btn {
    margin-top: 28px;
}

section.register_company .main h1 {
    color: rgba(0, 0, 0, 1);
    font-size: 34px;
    font-weight: 600;
    margin: 56px 0;
}



section.register_company .main form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.register_company .main form .location {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.register_company .main form input {
    border: 1px solid rgba(179, 179, 179, 1);
    width: 100%;
}

section.register_company .main form .location input {
    width: 224px;
    border: 1px solid rgba(179, 179, 179, 1);
}




section.register_company .main form input[type="submit"] {
    width: 392px;
    margin-top: 56px;

}

section.register_company .main form .input_wrap {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

section.register_company .main form .input_wrap img {
    position: absolute;
    right: 20px;
    cursor: pointer;
    margin-top: 10px;
}

section.register_company .main form .line {
    margin-top: 16px;
    background-color:rgba(0, 0, 0, 1);
    opacity: .2;
    height: 1px;
    width: 100%;
    margin-bottom: 12px;
}


section.register_company .main form .v {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

section.register_company .main form .b {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

section.register_company .main form .text {
    flex: 1;
}

section.register_company .main form .text p {
    font-size: 14px;
    font-weight: 600;
    color: black;
}

section.register_company .main form .inp {
    position: relative;
    width: 120px;
    margin-left: 8px;
}

section.register_company .main form .inp span {
    position: absolute;
    font-weight: 500;
    font-size: 14px;
    color: rgba(128, 128, 128, 1);
    left: 16px;
    top: 26px;
}

section.register_company .main form .inp input {
    width: 100%;
    padding-left: 60px;
}


















.map_header {
    top: 16px;
    left: 0;
    position: absolute;
    height: 72px;
    /* border: 1px solid red; */
    width: 100%;
    z-index: 4;
    padding: 0 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.map_header .search_panel {
    padding-left: 20px;
    width: 518px;
    height: 100%;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.map_header .search_panel.active {
    border-radius: 16px 16px 0 0;
}

.map_header .search_panel .search_wrap {
    margin-left: 16px;
}

.map_header .search_panel .search_wrap .search_input {
    width: 330px;
    /* border: 1px solid red; */
    position: relative;
}

.map_header .search_panel .search_wrap .search_input input {
    width: 100%;
    padding: 10px 0px;
    border: none;
    outline: none;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    padding-right: 90px;
}

.map_header .search_panel .search_wrap .search_input input::placeholder {
    font-size: 14;
    font-weight: 600;
    color: rgba(80, 80, 80, 1);

}

.map_header .search_panel .search_wrap .search_input img.search_icon {
    top: 10px;
    right: 8px;
    position: absolute;
}

.map_header .search_panel .search_wrap .search_input img.clear_input {
    display: none;
    top: 3px;
    right: 45px;
    position: absolute;
    cursor: pointer;
}

.map_header .search_panel .search_wrap .search_input img.clear_input.active {
    display: block;
}



.map_header .search_panel .search_results {
    min-height: 76px;
    width: 518px;
    position: absolute;
    top: 72px;
    left: 0;
    background-color: white;
    border-radius: 0 0 16px 16px;
    max-height: 380px;
    overflow: hidden;
    display: none;
}

.map_header .search_panel .search_results.active {
    display: block;
}

.map_header .search_panel .search_results .item {
    height: 76px;
    width: 100%;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 0 25px;
    cursor: pointer;
}

.map_header .search_panel .search_results .item p {
    font-size: 16px;
    font-weight: 700;
    color: black;
    margin: 0;
    padding: 0;
    margin-bottom: 5px;
}

.map_header .search_panel .search_results .item span {
    font-size: 14px;
    font-weight: 500;
    color: black;
}









.map_dark_overlay {
    position: absolute;
    left: 0;
    right: 0;
    background-color: #0000007e;
    width: 100%;
    height: 100vh;
    z-index: 3;
    display: none;
}

.map_dark_overlay.active {
    display: block;
}




.map_header .info_panels {
    /* border: 1px solid red; */
    height: 100%;
    display: flex;
    align-items: center;
}




.map_header .info_panels .filters {
    width: 149px;
    height: 100%;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: none;
}


.map_header .info_panels .filters img {

}

.map_header .info_panels .filters p {
    font-size: 14px;
    font-weight: 600;
    color: rgba(80, 80, 80, 1);
    margin-left: 14px;
}



.map_header .info_panels .notif {
    width: 82px;
    height: 100%;
    background-color: white;
    border-radius: 16px;
    margin-left: 16px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map_header .info_panels .notif img {
    padding: 6px;
    cursor: pointer;
}

.map_header .info_panels .notif img.bell {
    margin-right: 14px;
}

.map_header .info_panels .notif img.bookmark {
    
}

.map_header .info_panels .register {
    width: 562px;
    height: 100%;
    background-color: white;
    border-radius: 16px;
    /* margin-left: 16px; */
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 15px;
}


.map_header .info_panels .register .prof {
    width: 56px;
    height: 56px;
    background-color: rgba(216, 217, 243, 1);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.map_header .info_panels .register .prof p {
    color: rgba(37, 40, 116, 1);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.map_header .info_panels .register a {
    width: 324px;
}
















.miniBarInfo {
    /* top: 300px; */
    /* left: 200px; */
    position: absolute;
    width: 460px;
    height: 167px;
    border-radius: 16px;
    background-color: white;
    z-index: 1000;
    padding: 24px;
    display: none;
}
.miniBarInfo.active {
    display: block!important;
}

.miniBarInfo .online_mark {
    position: absolute;
    top: -16px;
    left: 24px;
    width: 85px;
    height: 32px;
    border-radius: 100px;
    background-color: rgba(135, 212, 58, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.miniBarInfo .online_mark span {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.miniBarInfo .top_mark {
    position: absolute;
    background: rgba(229, 116, 34, 1);
    height: 32px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 134px;
    top: -16px;
    left: 113px;
}

.miniBarInfo .top_mark span {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-left: 6px;
}

.miniBarInfo .modal_bookmark {
    position: absolute;
    cursor: pointer;
    right: 24px;
    top: -16px;
}





.miniBarInfo .info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.miniBarInfo .info .text {
    max-width: 288px;
}

.miniBarInfo .info .text p {
    color: black;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    margin-top: 8px;
    margin-bottom: 8px;
}

.miniBarInfo .info .text span {
    color: rgba(0, 0, 0, 0.493);
    font-size: 14px;
    font-weight: 500;
}



.miniBarInfo .info .photo {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 16px;
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.miniBarInfo .info .photo img {
    position: absolute;
    width: 150%;
    height: auto;
}

.miniBarInfo .info .photo .count {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}



.miniBarInfo .time_stars {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.miniBarInfo .time_stars img {
    margin-left: 5px;
}
.miniBarInfo .time_stars .rating {
    font-size: 16px;
    font-weight: 600;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.miniBarInfo .time_stars .rating_count {
    font-size: 14px;
    font-weight: 500;
    color: black;
    opacity: .5;
    margin-left: 10px;
}

.miniBarInfo .time_stars .opened {
    font-size: 14px;
    font-weight: 500;
    color: black;
    margin-left: 25px;
}

.miniBarInfo .time_stars p {
    margin-top: 0;
}











.bigBarInfo {
    top: 50%;
    left: 50%;
    position: absolute;
    width: 664px;
    height: 485px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 1);
    z-index: 3;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 1001;
}

.bigBarInfo.active {
    display: block!important;
}


.bigBarInfo .online_mark {
    position: absolute;
    top: -16px;
    left: 24px;
    width: 85px;
    height: 32px;
    border-radius: 100px;
    background-color: rgba(135, 212, 58, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.bigBarInfo .online_mark.active {
    display: block;
}

.bigBarInfo .online_mark span {
    color: white;
    font-size: 14px;
    font-weight: 600;
}


.bigBarInfo .rating_mark {
    position: absolute;
    top: -16px;
    left: 124px;
    width: 126px;
    height: 32px;
    border-radius: 100px;
    background: rgba(230, 230, 230, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.bigBarInfo .rating_mark.active {
    display: block;
}

.bigBarInfo .rating_mark span {
    color: black;
    font-size: 12px;
    font-weight: 600;
}


.bigBarInfo .modal_bookmark {
    position: absolute;
    cursor: pointer;
    right: 130px;
    top: -16px;
}


/* .bigBarInfo .bx-wrapper.active {
    display: block;
}

.bigBarInfo .bx-wrapper {
    display: none;
} */

.bigBarInfo  .close_modal {
    position: absolute;
    right: 16px;
    top: 16px;
    cursor: pointer;
}

.bigBarInfo .photo_slider {
    width: 100%;
    /* display: none; */
}

/* .bigBarInfo .photo_slider.active {
    width: 100%;
    display: block;
} */

.bigBarInfo .photo_slider .slide {
    width: 100px!important;
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
    margin-right: 12px!important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bigBarInfo .photo_slider .slide img {
    height: 110%;
    width: auto;
    max-width: 1000%!important;
    cursor: pointer;
}


.bigBarInfo .bx-wrapper {
    width: 590px!important;
    margin-top: 48px!important;
    margin-bottom: 32px!important;
}





.bigBarInfo .info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bigBarInfo .info p.name {
    font-size: 20px;
    font-weight: 600;
    color: black;
    margin: 0;
    margin: 4px 0;
}

.bigBarInfo .info p.description {
    font-size: 14px;
    font-weight: 500;
    color: black;
    opacity: 50%;
    margin: 0;
    margin: 4px 0;
}

.bigBarInfo .info p.time {
    font-size: 14px;
    font-weight: 500;
    color: black;
    margin: 0;
    margin: 4px 0;
}






.bigBarInfo .stream_btn {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}
.bigBarInfo .stream_btn button {
    height: 64px;
    /* width: 292px; */
    background-color: #919191;
    pointer-events: none;
}

.bigBarInfo .stream_btn button.active {
    background-color: rgba(102, 107, 207, 1);
    pointer-events: all;
}





.bigBarInfo .rating_block {
    background: rgba(250, 250, 250, 1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 616px;
    height: 80px;
    margin: 0 auto;
    padding: 0 16px;
    margin-top: 28px;
}

.bigBarInfo .rating_block .wrap {
    display: flex;
    align-items: center;
}


.bigBarInfo .rating_block .wrap p.rate {
    color: black;
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    margin-right: 8px;
}


.bigBarInfo .rating_block .wrap .stars_wrap p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px
}

.bigBarInfo .rating_block .wrap .stars_wrap .stars i {
    color: rgba(255, 209, 47, 1);
    margin-right: 6px;

}







.bigBarInfo .rating_block .wrap_2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bigBarInfo .rating_block .wrap_2 p {
    font-size: 14px;
    font-weight: 500;
    color: black;
    max-width: 75px;
}

.bigBarInfo .rating_block .wrap_2 p.done {
    font-size: 14px;
    font-weight: 500;
    color: black;
    max-width: 240px;
    margin-right: 30px;
}

.bigBarInfo .rating_block .wrap_2 .stars_vote {
    margin-left: 16px;
}

.bigBarInfo .rating_block .wrap_2 .stars_vote i {
    color: rgba(219, 219, 219, 1);
    font-size: 36px;
    cursor: pointer;
}

.bigBarInfo .rating_block .wrap_2 .stars_vote i.active {
    color: rgba(255, 209, 47, 1);
}











.profileInfo {
    padding: 0 24px;
    position: absolute;
    width: 664px;
    background-color: white;
    border-radius: 16px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: none;
    height: auto;
}

.profileInfo.active {
    display: block;
}

.profileInfo .head {
    height: 72px;
    width: 100%;
    position: relative;
    border-bottom: 1px solid rgba(227, 227, 227, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profileInfo .head p {
    font-size: 16px;
    font-weight: 600;
    color: black;
}

.profileInfo .close_modal {
    position: absolute;
    right: 25px;
    top: 25px;
    cursor: pointer;
}

.profileInfo .bio {

    margin-top: 27px;
    border-bottom: 1px solid rgba(227, 227, 227, 1);
    padding-bottom: 32px;
}

.profileInfo .bio input {
    border: 1px solid rgba(179, 179, 179, 1);
    width: 304px;
}

.profileInfo .private {
    border-bottom: 1px solid rgba(227, 227, 227, 1);
    padding-bottom: 32px;
}

.profileInfo .private .slide_wrap {
    overflow: hidden;
    height: 0px;
    transition: .2s;
}

.profileInfo .private .slide_wrap.active {
    height: 128px;
}

.profileInfo .private p {
    font-size: 24px;
    font-weight: 600;
    color: black;
    margin: 0;
    margin-top: 32px;
    margin-bottom: 22px;
    cursor: pointer;
}


.profileInfo .private p span {
    color: #00000070;
    font-size: 20px;
    margin-left: 10px;
}

.profileInfo .private .old {
    display: flex;
    align-items: center;
}

.profileInfo .private .old input {
    width: 304px;
    border: 1px solid rgba(179, 179, 179, 1)
}

.profileInfo .private .old a {
    color: rgba(102, 107, 207, 1);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    margin-left: 16px;
}

.profileInfo .private .new {
    display: flex;
}

.profileInfo .private .new input {
    width: 304px;
    border: 1px solid rgba(179, 179, 179, 1);

}

.profileInfo .private .new input.newPass {
    margin-right: 8px;
}

.profileInfo .logout {

}

.profileInfo .logout a {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(38, 38, 38, 1);
    text-decoration: none;
    margin: 0;
    margin: 32px 0;
}

.profileInfo .logout a:hover {
    text-decoration: underline;
}

.profileInfo .save {
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* height: 112px; */
    border-top: 1px solid rgba(227, 227, 227, 1);
    padding-bottom: 30px;
}



















.myEstablishments {
    width: 100%;
    height: 85vh;
    background-color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1001;
    border-radius: 56px 56px 0 0;
    display: flex;
    display: none;
}

.myEstablishments.active {
    display: flex;
}

.myEstablishments .close_estateModal {
    width: 45px;
    height: 45px;
    padding: 10px;
    position: absolute;
    top: -40px;
    right: 45px;
    cursor: pointer;
}


.myEstablishments .right-tab {
    flex: 1;
    height: 100%;
    padding: 56px;
}

.myEstablishments .right-tab .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.myEstablishments .right-tab .title h1 {
    font-size: 24px;
    font-weight: 700;
    color: rgba(38, 38, 38, 1);
}

.myEstablishments .right-tab .table {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.myEstablishments .right-tab .table p {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(102, 102, 102, 1);
}

.myEstablishments .right-tab .table p.place {
    /* margin-right: 78px; */
    flex: 1;
}


.myEstablishments .right-tab .table p.name {
    margin-right: 380px;
}


.myEstablishments .right-tab .table p.rating {
    
}

.myEstablishments .right-tab .items {

}

.myEstablishments .right-tab .items .item {
    height: 52px;
    width: 100%;
    border-bottom: 1px solid rgba(227, 227, 227, 1);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.myEstablishments .right-tab .items .item span {
    font-size: 16px;
    font-weight: 600;
    color: rgba(128, 128, 128, 1);
    margin-right: 90px;
    width: 50px;
}

.myEstablishments .right-tab .items .item p.name {
    font-weight: 600;
    font-size: 16px;
    color: rgba(38, 38, 38, 1);
    /* width: 250px; */
    flex: 1;
    overflow: hidden;
    margin-right: 50px;
}

.myEstablishments .right-tab .items .item p.rating {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    color: rgba(38, 38, 38, 1);
}

.myEstablishments .right-tab .items .item p.rating img {
    margin-left: 5px;
}




.myEstablishments .left-tab .title h1 {
    font-size: 24px;
    font-weight: 700;
    color: rgba(38, 38, 38, 1);
}




.myEstablishments .left-tab {
    width: 50%;
    height: 100%;
    border-right: 1px solid rgba(227, 227, 227, 1);
    padding: 56px;
}


.myEstablishments .left-tab .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.myEstablishments .left-tab .title a {
    font-size: 14px;
    font-weight: 600;
    color: rgba(102, 107, 207, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.myEstablishments .left-tab .title a img {
    margin-right: 6px;
}

.myEstablishments .left-tab .item {
    padding: 24px;
    background-color: rgba(242, 242, 242, 1);
    border-radius: 16px;
    margin-bottom: 8px;
}

.myEstablishments .left-tab .item .head {
    display: flex;
    margin-bottom: 24px;
    position: relative;
}

.myEstablishments .left-tab .item .head img.settings {
    position: absolute;
    right: 0px;
    top: 0;
    cursor: pointer;
}

.myEstablishments .left-tab .item .head .online {
    width: 84px;
    height: 32px;
    border-radius: 100px;
    background: rgba(46, 200, 98, 1);
    color: white;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    display: none;
}

.myEstablishments .left-tab .item .head .online.active {
    display: flex;
}

.myEstablishments .left-tab .item .head .offline {
    width: 84px;
    height: 32px;
    border-radius: 100px;
    background: black;
    color: white;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    display: none;
}

.myEstablishments .left-tab .item .head .offline.active {
    display: flex;
}

.myEstablishments .left-tab .item .title h1 {
    font-size: 24px;
    font-weight: 700;
    color: rgba(38, 38, 38, 1);
}

.myEstablishments .left-tab .item .title a {
    color: rgba(102, 107, 207, 1);
    font-size: 14px;
    font-weight: 600;
}

.myEstablishments .left-tab .item .info p {
    font-size: 20px;
    color: rgba(38, 38, 38, 1);
    font-weight: 600;
    margin: 0;
    margin-bottom: 8px;
}

.myEstablishments .left-tab .item .info span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(102, 102, 102, 1);

}


.myEstablishments .left-tab .item .time_stars {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 14px
}

.myEstablishments .left-tab .item .time_stars img {
    margin-left: 5px;
}
.myEstablishments .left-tab .item .time_stars .rating {
    font-size: 16px;
    font-weight: 600;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.myEstablishments .left-tab .item .time_stars .rating_count {
    font-size: 14px;
    font-weight: 500;
    color: black;
    opacity: .5;
    margin-left: 10px;
}

.myEstablishments .left-tab .item .time_stars .opened {
    font-size: 14px;
    font-weight: 500;
    color: black;
    margin-left: 25px;
}

.myEstablishments .left-tab .item .time_stars p {
    margin-top: 0;
}









.myEstablishments .left-tab .item .foot button {
    border-radius: 100px;
    height: 40px;
    width: 236px;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.myEstablishments .left-tab .item .foot button.blocked {
    pointer-events: none;
    opacity: .6;
}

.myEstablishments .left-tab .item .foot button.active {
    background-color: transparent;
    border: 1px solid #666BCF;
    color: #666BCF;
}

.myEstablishments .left-tab .item .foot button img {
    margin-right: 8px;
}


.lb-data .lb-close {
    transition: all 0.25s; /* Половина от стандартного времени 0.5s */
}

.lb-dataContainer {
    transition: all 0.25s; /* Половина от стандартного времени 0.5s */
}

.lb-outerContainer {
    transition: width 0.25s, height 0.25s; /* Половина от стандартного времени 0.5s */
}

#lightboxOverlay {
    transition: all 0.25s; /* Половина от стандартного времени 0.5s */
}















.settingsOverlay {
    z-index: 5000;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.651);
    display: none;
}

.settingsOverlay.active {
    display: block;
}

.settingsOverlay .estateSettings {
    height: 850px;
    width: 664px;
    background-color: white;
    border-radius: 16px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 24px;
}

.settingsOverlay .estateSettings .head {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.089);
    padding-bottom: 22px;
}

.settingsOverlay .estateSettings .head p {
    font-size: 16px;
    color: rgba(38, 38, 38, 1);
    font-weight: 500;
    margin: 0;
}

.settingsOverlay .estateSettings .head img {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}


.settingsOverlay .estateSettings .info {

}

.settingsOverlay .estateSettings .info .first {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.settingsOverlay .estateSettings .info .first p {
    font-size: 20px;
    font-weight: 600;
    color: rgba(38, 38, 38, 1);
}


.settingsOverlay .estateSettings .info .first span {
    color: rgba(102, 107, 207, 1);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.settingsOverlay .estateSettings .info .first span img {
    margin-right: 8px;
}


.settingsOverlay .estateSettings .info .second {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.settingsOverlay .estateSettings .info .second .inp {
    width: 304px;
    height: 56px;
    position: relative;
}

.settingsOverlay .estateSettings .info .second .inp span {
    position: absolute;
    font-size: 12px;
    font-weight: 500;
    color: rgba(128, 128, 128, 1);
    left: 16px;
    top: 10px;
}

.settingsOverlay .estateSettings .info .second .inp input {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(179, 179, 179, 1);
    border-radius: 16px;
    padding: 0 16px;
    padding-top: 14px;
}

.settingsOverlay .estateSettings .info .second .inp input.blocked {
    pointer-events: none;
    background-color: rgba(230, 230, 230, 1);
    border-color: rgba(230, 230, 230, 1);
}







.settingsOverlay .estateSettings .info .three {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.settingsOverlay .estateSettings .info .three .inp {
    width: 304px;
    height: 56px;
    position: relative;
}

.settingsOverlay .estateSettings .info .three .inp span {
    position: absolute;
    font-size: 12px;
    font-weight: 500;
    color: rgba(128, 128, 128, 1);
    left: 16px;
    top: 10px;
}

.settingsOverlay .estateSettings .info .three .inp input {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(179, 179, 179, 1);
    border-radius: 16px;
    padding: 0 16px;
    padding-top: 14px;
}

.settingsOverlay .estateSettings .info .three .inp input.blocked {
    pointer-events: none;
    background-color: rgba(230, 230, 230, 1);
    border-color: rgba(230, 230, 230, 1);
}







.settingsOverlay .estateSettings .info .four {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 24px;
}

.settingsOverlay .estateSettings .info .four p {
    color: rgba(38, 38, 38, 1);
    font-size: 15px;
    font-weight: 500;
    flex: 1;
}

.settingsOverlay .estateSettings .info .four .inp {
    width: 120px;
    height: 56px;
    position: relative;
    margin-left: 8px;
}

.settingsOverlay .estateSettings .info .four .inp span {
    position: absolute;
    font-size: 14px;
    font-weight: 500;
    color: rgba(128, 128, 128, 1);
    left: 16px;
    top: 18px;

}

.settingsOverlay .estateSettings .info .four .inp input {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(179, 179, 179, 1);
    border-radius: 16px;
    padding: 0 16px;
    padding-left: 64px;
    /* padding-top: 14px; */
}

.settingsOverlay .estateSettings .info .four .inp input.blocked {
    pointer-events: none;
    background-color: rgba(230, 230, 230, 1);
    border-color: rgba(230, 230, 230, 1);
}













.settingsOverlay .estateSettings .info .five {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 8px;
}

.settingsOverlay .estateSettings .info .five p {
    color: rgba(38, 38, 38, 1);
    font-size: 15px;
    font-weight: 500;
    flex: 1;
}

.settingsOverlay .estateSettings .info .five .inp {
    width: 120px;
    height: 56px;
    position: relative;
    margin-left: 8px;
}

.settingsOverlay .estateSettings .info .five .inp span {
    position: absolute;
    font-size: 14px;
    font-weight: 500;
    color: rgba(128, 128, 128, 1);
    left: 16px;
    top: 18px;

}

.settingsOverlay .estateSettings .info .five .inp input {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(179, 179, 179, 1);
    border-radius: 16px;
    padding: 0 16px;
    padding-left: 64px;
    /* padding-top: 14px; */
}

.settingsOverlay .estateSettings .info .five .inp input.blocked {
    pointer-events: none;
    background-color: rgba(230, 230, 230, 1);
    border-color: rgba(230, 230, 230, 1);
}









.settingsOverlay .estateSettings .photo {

}

.settingsOverlay .estateSettings .photo p.title {
    color: rgba(38, 38, 38, 1);
    font-size: 20px;
    font-weight: 600;
}

.settingsOverlay .estateSettings .photo .files {

}


.settingsOverlay .estateSettings .files #drop_zone {
    /* background-color: linear-gradient(0deg, #F0F0FA, #F0F0FA), linear-gradient(0deg, #666BCF, #666BCF); */
    border: 2px dashed rgba(102, 107, 207, 1);
    width: 100%;
    height: 120px;
    border-radius: 16px;
    background-color: #F0F0FA;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.settingsOverlay .estateSettings .files #drop_zone p {
    color: rgba(38, 38, 38, 1);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.settingsOverlay .estateSettings .files #drop_zone span {
   color: rgba(102, 107, 207, 1);
   font-size: 13px;
   font-weight: 600;
}

.settingsOverlay .estateSettings .files #preview {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 8px;
    height: 100px;
}

.settingsOverlay .estateSettings .files #preview .item {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.settingsOverlay .estateSettings .files #preview .item img.close {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 8px;
    right: 8px;
}

.settingsOverlay .estateSettings .files #preview .item img.obj {
    width: 150%;
    height: auto;
}




.settingsOverlay .estateSettings .remove_block {
    margin-top: 10px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-top: 1px solid rgba(0, 0, 0, 0.089);
}

.settingsOverlay .estateSettings .remove_block span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(102, 107, 207, 1);
    cursor: pointer;
}

.settingsOverlay .estateSettings .remove_block span.blocked {
    color: #00000036;
    pointer-events: none;
}

.settingsOverlay .estateSettings .buttons {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}



















.streamingFrame {
    width: 632px;
    height: 472px;
    border-radius: 32px;
    overflow: hidden;
    position: absolute;
    left: 150px;
    top: 120px;
    z-index: 6000;
    display: none;
}

.streamingFrame.active {
    display: block;
}

.streamingFrame img {
    background-color: #d9d9d9;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    z-index: 7000;
}


.streamingFrame video {
    width: 100%;
    height: 100%;
    background: #adadad;
}











































@media only screen and (max-width: 1700px) {
    section.login {
        overflow: hidden;
        min-height: 791px;
    }
    section.login img.right {
        right: -100px;
    }

    section.login img.left {
        left: -100px;
    }

    section.register {
        overflow: hidden;
        min-height: 791px;
    }

    section.register img.right {
        right: -100px;
    }

    section.register img.left {
        left: -100px;
    }

    section.register_company {
        overflow: hidden;
        height: 920px;
    }

    section.register_company img.right {
        right: -200px;
    }

    section.register_company img.left {
        left: -200px;
    }
    
}

@media only screen and (max-width: 1700px) {
    section.login img.right {
        right: -200px;
    }

    section.login img.left {
        left: -200px;
    }

    section.register img.right {
        right: -200px;
    }

    section.register img.left {
        left: -200px;
    }

    section.register_company img.right {
        right: -200px;
    }

    section.register_company img.left {
        left: -200px;
    }
}



@media only screen and (max-width: 1450px) {
    .myEstablishments .right-tab {
        display: none;
    }

    .myEstablishments .left-tab {
        width: 100%;
    }
    .text_section {
        width: 650px!important;
    }
    
}





@media only screen and (max-width: 1200px) {
    /* Ваши стили здесь */
    header {
        padding: 0 40px;
    }

    section.welcome .wrapper {
        padding: 0 40px;
    }

    section.why-me h2 {
        font-size: 34px;
    }

    section.why-me .column p {
        font-size: 30px;
    }
    section.why-me .wrapper {
        padding-top: 0;
    }

    section.features .wrapper {
        flex-wrap: wrap;
    }
    section.features .block {
        padding: 20px 10px;
    }
    section.features {
        padding: 85px 0;;
    }
    section.text .wrapper p {
        font-size: 18px;
    }
    section.text .wrapper ul li {
        font-size: 18px;
    }
    .news-section h2 {
        font-size: 34px;
    }
    section.news-section {
        padding-top: 20px;
    }

    footer {
        padding: 0 40px;
    }








    .dark_overlay .big_modal h1 {
        font-size: 48px;
        line-height: 48px;
        margin-top: 78px;
    }

    .dark_overlay .big_modal p.description {
        font-size: 18px;
        line-height: 20px;
    }

    .slider {
        margin-top: 54px;
    }
    h2 {
        font-size: 35px;
        margin-top: 114px;
    }

    .sliderSection .bx-wrapper {
        margin-top: 55px;
    }

    .map_section .map_item {
        flex-direction: column;
        height: 741px;
        width: auto;
    }
    
    .map_section .map_item .image {
        order: 1;
    }

    .map_section .map_item .info {
        display: flex;
        align-items: center;
    }

    .map_section .map_item .info h3 {
        text-align: center;
        margin-bottom: 20px;
    }
    .map_section .map_item .info p {
        margin-top: 4px;
    }
    .map_section .map_item .info a {
        width: 250px;
    }

    .map_section .map_item .image img {
        width: 400px;
        margin-top: 40px;
    }

    .map_section .map_item .image {
        display: flex;
        align-items: center;
        justify-content: center;
    }









    section.login img.left {
        display: none;
    }

    section.login {
        overflow: inherit;
        height: auto;
    }

    section.login img.right {
        display: none;
    }

    section.register {
        overflow: inherit;
        height: auto;
    }


    section.register img.left {
        display: none;
    }

    section.register {
        overflow: inherit;
        height: auto;
    }

    section.register img.right {
        display: none;
    }

    section.register_company {
        overflow: inherit;
        height: auto;
    }

   section.register_company img.left {
        display: none;
    }

    section.register_company img.right {
        display: none;
    }



    .map_header {
        flex-direction: column;
        height: 150px;
    }

    .map_header .info_panels .register {
        margin-top: 10px;
    }

    .profileInfo {
        z-index: 5;
    }
 
}

/* Стили для экранов шириной от 768px до 992px */
@media only screen and (max-width: 992px) {
    /* Ваши стили здесь */
    header .wrapper .logo span {
        font-size: 18px;
    }
    section.welcome .wrapper h1 {
        font-size: 44px;
    }
    section.welcome .wrapper p {
        font-size: 18px;
    }
    .btn a {
        font-size: 20px;
        padding: 0.8em 2em;
    }
    section.why-me h2 {
        font-size: 28px;
    }
    section.why-me .column {
        padding-top: 0;
    }
    section.why-me .arrow {
        font-size: 18px;
    }
    section.why-me .column p {
        font-size: 24px;
    }
    section.why-me .column ul li {
        font-size: 14px;
    }
    section.features .block {
        min-width: 200px;
    }
    section.text .wrapper p {
        font-size: 17px;
    }
    section.text {
        padding-top: 45px;
    }
    section.text .wrapper ul li {
        font-size: 17px;
    }
    section.text .wrapper p {
        margin-bottom: 24px;
    }
    .news-section h2 {
        font-size: 28px;
    }
    section.news-section .wrapper .news-item {
        min-width: 260px;
    }
    section.news-section .wrapper .news-item h3 {
        font-size: 1em;
    }
    section.accord h4 {
        font-size: 28px;
    }
    .accordion-title {
        font-size: 20px;
    }
    .accordion-content p {
        font-size: 17px;
    }

    footer .wrapper span {
        font-size: 20px;
    }








    .dark_overlay .big_modal h1 {
        font-size: 39px;
        line-height: 38px;
    }

    .slider .slider_wrap .item {
        height: 250px;
    }

    h2 {
        margin-top: 73px;
    }










    .transparent_btn {
        height: 49px;
        font-size: 14px;
    }

    section.login .main h1 {
        font-size: 35px;
        margin: 34px 0px;
    }

    section.login .main span.or {
        margin: 11px 0px;
    }

    section.register .main h1 {
        font-size: 35px;
        margin: 34px 0px;
    }

    section.register .main span.or {
        margin: 11px 0px;
    }







    section.register_company .main {
        width: 420px;
    }
    
    section.register_company .main h1 {
        font-size: 28px;
        margin: 30px 0;
    }

    section.register_company .main form .location input {
        width: 203px;
    }

    section.register_company .main form input[type="submit"] {
        margin-top: 36px;
    }
    
}

/* Стили для экранов шириной от 481px до 768px */
@media only screen and (max-width: 768px) {
    /* Ваши стили здесь */
    header .wrapper .logo span {
        font-size: 15px;
    }
    header nav ul li {
        margin-right: 12px;
    }
    header nav {
        margin-left: 23px;
    }
    header nav ul li {
        font-size: 14px;
    }
    section.welcome .wrapper h1 {
        font-size: 32px;
        margin-top: 60px;
        line-height: 35px;
    }
    section.welcome .wrapper p {
        font-size: 15px;
        line-height: 20px;
    }
    .btn a {
        font-size: 18px;
        padding: 0.8em 1em;
    }

    section.welcome {
        height: 680px;
    }
    section.why-me .wrapper {
        flex-direction: column;
    }
    section.why-me .arrow {
        transform: rotate(90deg);
    }
    section.why-me h2 {
        font-size: 22px;
    }
    section.why-me {
        padding-top: 50px;
    }
    section.why-me .column p {
        font-size: 22px;
        margin-bottom: 0;
    }
    section.text .wrapper p {
        font-size: 16px;
    }
    section.text .wrapper ul li {
        font-size: 16px;
    }
    .news-section h2 {
        font-size: 24px;
        margin-top: 0px;
    }
    section.news-section .wrapper .news-item {
        padding: 10px;
    }
    section.news-section .wrapper {
        flex-direction: column;
    }
    section.accord h4 {
        font-size: 22px;
        margin-top: 0;
    }
    .accordion-title {
        font-size: 17px;
    }
    .accordion-content p {
        font-size: 16px;
        line-height: 25px;
    }
    footer nav ul li {
        margin-right: 12px;
    }
    footer nav {
        margin-left: 23px;
    }
    footer nav ul li {
        font-size: 14px;
    }






    .dark_overlay .big_modal {
        top: 115px;
    }

    .dark_overlay .big_modal h1 {
        font-size: 28px;
        line-height: 28px;
        margin-top: 45px;
    }

    .dark_overlay .big_modal p.description {
        font-size: 16px;
        line-height: 17px;
    }

    .btn {
        height: 51px;
    }
    
    h2 {
        margin-top: 56px;
        font-size: 30px;
    }

    .reviews {
        margin-top: 54px;
    }
    

    .dark_overlay .big_modal p.description {
        padding: 0 30px;
    }

    .bx-wrapper .bx-controls-direction a.bx-next {
        right: 20px;
    }

    .bx-wrapper .bx-controls-direction a.bx-prev {
        left: 20px;
    }

    .map_section .map_item .info h3 {
        font-size: 26px;
    }

    .map_section .map_item {
        padding: 18px;
    }

    .map_section .map_item .info p {
        text-align: center;
    }







    .myEstablishments .left-tab {
        padding: 30px ;
    }

    .profileInfo {
        width: 420px;
    }

    .profileInfo .bio {
        margin-top: 10px;
        padding-bottom: 20px;
    }

    .profileInfo .private p {
        margin-top: 10px;
        margin-bottom: 10px;
    }


    .profileInfo .private .old input {
        width: 175px;
    }

    .profileInfo .private .new input {
        width: 175px;
    }

    .profileInfo .logout a {
        margin: 12px 0px;
    }

    /* .profileInfo {
        height: 521px;
    } */

    .map_header .search_panel .search_wrap .search_input {
        width: 240px;
    }

    .map_header .search_panel {
        width: 420px;
    }

    .map_header .info_panels .register a {
        width: 260px;
    }

    .map_header .info_panels .register {
        margin-left: 0;
    }

    .map_header .info_panels .register {
        width: 460px;
    }

    .bigBarInfo {
        width: 420px;
    }

    .bigBarInfo .rating_block {
        width: 380px;
    }

    .bigBarInfo .rating_block {
        flex-direction: column;
    }

    .bigBarInfo .bx-wrapper {
        width: 377px!important;
    }

    .settingsOverlay .estateSettings {
        width: 420px;
    }

    .settingsOverlay .estateSettings .info .three .inp {
        width: 182px;
    }

    .settingsOverlay .estateSettings .info .second .inp {
        width: 182px;
    }

    .text_section {
        width: 430px!important;
    }
}

/* Стили для экранов шириной от 380px до 480px */
@media only screen and (max-width: 480px) {
    /* Ваши стили здесь */
    section.welcome .wrapper h1 {
        font-size: 24px;
    }

    section.welcome .wrapper p {
        font-size: 14px;
    }
    .btn a {
        font-size: 16px;
    }
    section.why-me h2 {
        font-size: 18px;
    }
    .accordion-title {
        font-size: 15px;
    }

    .accordion-content p {
        font-size: 15px;
    }

    footer .wrapper span {
        font-size: 15px;
    }





    .dark_overlay .big_modal p.description {
        font-size: 12px;
    }



    .text_section {
        width: 300px!important;
    }

    section.login .main {
        width: auto;
        padding: 0 30px;
    }

    section.login .main button.google {
        width: 100%;
    }

    section.login .main form {
        width: 100%;
    }

    input.transparent {
        width: 100%;
    }

    section.login .main form .input_wrap {
        width: 100%;
    }

    section.login .main form input[type="submit"] {
        width: 100%;
    }





    section.register .main {
        width: 100%;
        padding: 0 30px;
    }

    section.register .main button.google {
        width: 100%;
    }

    section.register .main form {
        width: 100%;
    }

    section.register .main form .input_wrap {
        width: 100%;
    }

    section.register .main form input[type="submit"] {
        width: 100%;
    }

}


@media only screen and (max-width: 460px) {
    .map_header .search_panel {
        width: 310px;
    }

    .map_header .search_panel .search_wrap .search_input {
        width: 180px;
    }

    .map_header .search_panel .search_wrap .search_input input {
        font-size: 11px;
    }

    .map_header .info_panels .register {
        width: 310px;
    }

    .map_header .info_panels .register a {
        width: 166px;
        font-size: 12px;
        text-align: center;
    }

    .map_header {
        height: 120px;
    }

    .map_header .search_panel {
        height: 100%;
    }

    .map_header .info_panels .register {
        height: 90%;
    }

    .map_header .info_panels .register a {
        width: 127px;
        height: 44px;
    }

    .map_header .info_panels .register .prof {
        height: 46px;
        width: 46px;
    }

    .map_header .search_panel > img {
        width: 58px!important;
    }
    .map_header .search_panel .search_wrap .search_input input {
        padding-right: 44px;
    }

    .map_header .search_panel .search_wrap .search_input {
        width: 150px;
    }
}

/* Стили для экранов шириной до 380px
@media only screen and (max-width: 380px) {
    /* Ваши стили здесь */
/* }  */



/* END INDEX PAGE MOBILE  */








/*BLOG PAGE MOBILE  */

/* Стили для экранов шириной от 1200px до 992px */
@media only screen and (max-width: 1200px) {

}

/* Стили для экранов шириной от 768px до 992px */
@media only screen and (max-width: 992px) {

    .info_tabs img.item_2 {
        display: none;
    }

    footer {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    footer .links {
        margin-top: 15px;
        margin-bottom: 20px;
    }

    footer .logo {
        margin-top: 30px;
        margin-left: 50px;
        margin-bottom: 15px;
    }

    header {
        height: 80px;
    }

    header .logo img {
        height: 50px;
    }

    .main_tabs {
        margin-top: 12px;
    }



    .streamingFrame {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    
}

/* Стили для экранов шириной от 481px до 768px */
@media only screen and (max-width: 768px) {
    .main_tabs {
        width: 400px;
    }

    .main_tabs .overlay {
        min-width: 190px;
    }

    .main_tabs button {
        min-width: 200px;
    }

    .info_tabs .item {
        width: 400px;
        height: 400px;
        padding: 10px;
    }

    .info_tabs .item p {
        font-size: 15px;
        padding: 0 20px
    }

    .btn {
        font-size: 14px;
    }

    .info_tabs .item .buttons button {
        font-size: 14px;
    }
    .info_tabs .item .buttons a.run {
        width: 224px;
    }

    .info_tabs .item .buttons button.more {
        width: 138px;
    }

    .info_tabs .item .buttons {
        bottom: 22px;
    }

    .map_header .search_panel > img {
        width: 72px;
    }
    
}

@media only screen and (max-width: 700px) {
    .streamingFrame {
        width: 90%;
        height: 472px;
    }

}

@media only screen and (max-width: 600px) {
    .eng_swich.mod {
        right: 28px!important;
    }
}

/* Стили для экранов шириной от 380px до 480px */
@media only screen and (max-width: 480px) {
    footer .alert span {
        font-size: 12px;
    }

    .eng_swich .sw {
        width: 68px!important;
        height: 27px!important;
    }

    .eng_swich .sw .circle {
        height: 27px!important;
        width: 33px!important;
    }

    .eng_swich .sw .words span {
        font-size: 12px!important;
    }

    .eng_swich .sw .circle.active {
        left: 35px!important
    }
}

/* Стили для экранов шириной до 380px
@media only screen and (max-width: 380px) {
    /* Ваши стили здесь */
/* }  */

/* END BLOG PAGE MOBILE  */








.message_alert {
    z-index: 9999;
    position: absolute;
    left: 50%;
    top: -20%;
    transform: translateX(-50%);
    width: 380px;
    padding: 0 20px;
    height: 70px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    transition: .3s;
}

.message_alert.active {
    top: 3%;
    
}

.message_alert .fa {
    margin-right: 12px;
    font-size: 28px;
    color: #363636;
}

.message_alert span {
    font-size: 16px;
}

p.finish {
    display: none;
}

p.finish.active {
    display: block;
}








.eng_swich {
    cursor: pointer;
}

.eng_swich.mod {
    position: absolute;
    right: 100px;
}


.eng_swich .sw {
    width: 86px;
    height: 32px;
    border-radius: 50px;
    background-color: #F0F0FA;
    position: relative;
}

.eng_swich .sw .circle {
    left: 0;
    top: 0;
    position: absolute;
    width: 43px;
    height: 32px;
    border-radius: 50px;
    background-color: #666BCF;
    transition: .1s;
}

.eng_swich .sw .circle.active {
    left: 43px;
}

.eng_swich .sw .words {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.eng_swich .sw .words span {
    font-size: 14px;
    font-weight: 600;
    color: #666BCF;
    pointer-events: none;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome/Safari/Opera */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    user-select: none;           /* Non-prefixed version, currently not supported by any browser */
}

.eng_swich .sw .words span.active {
    color: white;
}


.burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 27px;
    height: 18px;
    margin-left: 15px;
    transition: .2s;
    cursor: pointer;
}

.burger .line {
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.568);
    border-radius: 4px;
}

.burger:hover {
    padding: 2px 0px;
}



.left_menu {
    height: 100vh;
    width: 300px;
    background-color: white;
    position: absolute;
    left: -300px;
    top: 0;
    z-index: 5;
    transition: .2s;
}

.left_menu.active {
    left: 0;
}

.left_menu .close {
    position: absolute;
    cursor: pointer;
    right: 20px;
    top: 20px;
}

.left_menu .list {
    width: 100%;
    margin-top: 80px;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.left_menu .list a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    margin-left: 40px;
    position: relative;
    cursor: pointer;
    transition: .2s;
    margin-bottom: 20px;
}

.left_menu .list a:after {
    content: "";
    position: absolute;
    width: 14px;
    height: 2px;
    background-color: black;
    left: -24px;
    top: 9px;
    transition: .3s;
}

.left_menu .list a:hover {
    margin-left: 50px;
    text-decoration: underline;
}

.left_menu .list a:hover::after {
    width: 22px;
    left: -28px;
}

.text_section {
    width: 800px;
}

.text_section h2 {
    margin-top: 60px;
    text-align: left;
    font-size: 36px;
    position: relative;
    margin-bottom: 40px;
}

.text_section h2:after {
    content: "";
    width: 140px;
    height: 8px;
    background-color: #ebebfd;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.text_section h1 {
    position: relative;
}

.text_section h1:after {
    content: "";
    width: 140px;
    height: 8px;
    background-color: #ebebfd;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.text_section p {
    font-size: 16px;
}

.text_section p strong {
    color: #666BCF;
}









/* STREAM MAIN CSS MAIN PAGE  */



.main__box-title{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.title{
    width: 808px;
    height: 48px;
    text-align: center;
    font-size: 40px;
    font-weight: 600;
}

.stream__bar-box,
.stream__platform-box{
    background-image: url("../img/card-bar.jfif");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 0px;
    border-radius: 32px 0px 0px 32px;
    width: 808px;
    height: 680px;
    display: flex;
    justify-content: center;
    margin-bottom: 92px;
}

.stream__platform-box{
    background-image: url("../img/card-platform.jfif");
    border-radius: 0px 32px 32px 0px;
}

.main__content{
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: center;
}

.text__main-blok{
    color: white;
    font-size: 20px;
    font-weight: 600;
    width: 720px;
    text-align: center;
    margin-top: 40px;
}


.stream__bar-content,
.stream__platform-content{
    background-image: linear-gradient(hsla(0, 0%, 0%, 1),hsla(0, 0%, 0%, 0));
    border-radius: 32px 0px 0px 32px;
    width: 808px;
    height: 600px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.stream__platform-content{
    border-radius: 0px 32px 32px 0px;
}

.button__more{
    background-color:  rgba(162, 172, 253, 0.2);
    border-radius: 16px;
    width: 153px;
    height: 54px;
    border: 0;
    backdrop-filter: blur(10px);
    color: white;
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
}

.button__look,
.button__start{
    background-color: rgba(102, 107, 207, 1);
    border-radius: 16px;
    border: 0;
    color: white;
    font-size: 16px;
    width: 283px;
    height: 64px;
}
.button__start{
    width: 169px;
    cursor: pointer;
}

.main__content-box{
    position: relative;
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0;
    margin: 0;
}

.wrapper__bar,
.wrapper__platform{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.button__start-link{
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}


@media(max-width : 1630px){
    .stream__bar-box,
    .stream__platform-box,
    .title,
    .stream__bar-content,
    .stream__platform-content{
        width: 606px;
    }

    .text__main-blok{
        width: 500px;
    }
    .main__content-box{
        width: 100%;
    }
}

.cursor{
    cursor: pointer;
}

@media(max-width : 1228px) {
    .main__content-box{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    .wrapper__platform{
        align-items: center;
    }
    .stream__bar-box,
    .stream__platform-box,
    .stream__bar-content,
    .stream__platform-content{
        border-radius: 32px;
    }

    .wrapper__platform {
        order: -1;
    }

    .wrapper__platform .hr {
        display: none;
    }
}

@media(max-width : 630px){
    .stream__bar-box,
    .stream__platform-box{
        width: 343px;
        height: 511px;
    }
    .title{
        height: fit-content;
        width: 343px;
        size: 36px;
        font-weight: 600;
    }
    .stream__bar-content,
    .stream__platform-content{
        width: 343px;
        padding: 0;
        height: 500px;
    }

    .box__button a.btn {
        padding: 17px 9px;
    }

    .wrapper__bar .title {
        font-size: 28px;
    }

    .wrapper__platform .title {
        font-size: 28px;
    }

    .wrapper__bar .stream__bar-box {
        margin-bottom: 10px;
    }

    .text__main-blok{
        width: 311px;
    }
    .button__more{
        width: 121px;
    }
    .button__look{
        width: 186px;
    }
    .footer__button-register{
        width: 279px;
    }
    .background{
        width: 343px;
    }
    .stream__bar-box,
    .stream__platform-box{
        background-position: 0;
    }
    .wrapper__bar{
        justify-content: center;
        align-items: center;
    }


    .main__content-box .box__button {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .main__content-box .box__button a {
        margin-top: 20px;
        margin-bottom: 10px;
    }

}










/* STREAM GENERAL CSS MAIN PAGE  */



.shadow{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
}
.profile__box{
    width: 335px;
    position: absolute;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 16px;
    padding: 24px;
    display: none;
    top: 50px;
    right:  56px;
    z-index: 2;
}

.profil__image{
    width: 62px;
    height: 62px;
}

.profile{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 48px;
}

.profil__you-name{
    color: rgba(38, 38, 38, 1);
    font-size: 20px;
    font-weight: 600;
}

.profil__title{
    color: rgba(195, 195, 195, 1);
    margin-left: 19px;
}


.button__profil{
    border: 0;
    background-color: transparent;
    display: flex;
    gap: 7px;
    cursor: pointer;
}

.wrapper__button-profil,
.wrappr__my-channel{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.wrappr__my-channel{
    gap: 12px;
}

.hr{
    top: 35px;
    width: 1px;
    background-color: black;
    height: 48px;
    padding-bottom:10px ;
    position: absolute;
}

.color__pink{
    color: rgba(102, 107, 207, 1);
}

.line{
    width: 1px;
    height: 825px;
}

.chat__messeg{
    border-left: 1px solid rgba(208, 208, 212, 1);
}

.business{
    background-image: url(../images/image\ \(2\).png);
}

.notifications__box{
    position: absolute;
    background-color: rgba(255, 255, 255, 1);
    padding: 32px 24px 32px 24px;
    width: 664px;
    height: fit-content;
    border-radius: 16px;
    display: none;
    top: 50px;
    right: 167px;
    z-index: 2;
}

.notification__title-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.title__notifications-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.notification{
    padding: 0px 24px 32px 24px;
    background-color: rgba(240, 240, 250, 1);
    margin-bottom: 10px;
}

.time{
    color: rgba(128, 128, 128, 1);
    font-size: 12px;
    font-weight: 600;
}

.notification__title{
    font-size: 14px;
    font-weight: 600;
    color: rgba(38, 38, 38, 1);
}

.notification__text{
    font-size: 14px;
    font-weight: 500;
    color: rgba(102, 102, 102, 1);
}

.shodow{
    display: none;
    width: 100%;
    height: 100%;
    background-color:  transparent;
    position: absolute;
    z-index: 2;
}

textarea {
    resize:none;
    height: 50px;
    outline: none;
}




.display-none{
    display: none;
}

.display-flex{
    display: flex;
}

.display-block{
    display: block;
}




.close{
    cursor: pointer;
}


a{
    text-decoration: none;
    cursor: pointer;
    color: rgba(38, 38, 38, 1);
}
.profil__icons{
    width: 19px;
    height: 19px;
}

.z-index{
    z-index: 4;
}




@media(max-width : 1228px){
    .hr{
        width: 243px;
        height: 1px;
        position: relative;
        padding: 0;
    }
}

@media(max-width : 909px){

    .notifications__box{
        padding: 32px 24px 32px 24px;
        width: 364px;
    }
}

@media(max-width : 592px){
        
    .notifications__box{
        padding: 22px 14px ;
        width: 264px;
    }
}

@media(max-width : 472px){
        
    .notifications__box{
        top: 50px;
        right: 67px;
    }
}

@media(max-width : 450px){
    .profile__box{
        right: 20px;
        width: 220px;
    }
    .serh__wrapper{
        width: 90px;
        position: absolute;
        left: 10px;
    }
}
