
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter;
}

body{
    background-color: #fff;
}

section.header{
    width: 100%;
    height: 160px;
    background: #4370d8;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
}

section.header img.logo{
    width: 224px;
}

section.header .phone_call, 
section.header .phone_number{
    font-weight: 500;
    font-style: Medium;
    font-size: 22px;
    letter-spacing: 0%;
    color: white;
}

section.header .left,
section.header .right{
    display: flex;
    flex-direction: row;
    height: 100%;
    margin-left: 10px;
    gap: 20px;    
    align-items: center;
}
section.header .right{
    justify-content: flex-end;
    margin-right: 10px;
}

section.header a.link{
    font-weight: 500;
    font-size: 22px;
    color: white;
    text-decoration: none;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.header a.link img{
    width: 289px; 
    height: 63px;
}

section.header a.button{
    border: 2px solid #FFFFFF;
    width: 160px;
    height: 60px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 22px;
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
section.header a.button:hover{
    background: #FFFFFF26;
}

section.header .dropdown{
    
    font-weight: 500;
    font-size: 22px;
    background: #4370d8;
    color: white;
    text-decoration: none;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

/* Caption styling (makes it clickable/hoverable) */
section.header .dropdown .caption {
    cursor: pointer;
    padding-right:  20px; /* Extra padding for better hover area */
}

/* Dropdown arrow */
section.header .dropdown .caption::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-75%) translateX(100%) rotate(45deg);
    width: 7px;
    height: 7px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transition: transform 0.2s ease;
}


section.header .dropdown .items {
    display: none;                 /* Hidden by default */
    position: absolute;
    top: 60px;                     /* Align directly below the header */
    right: 0;
    background: #4370d8;           /* Match header background */
    min-width: 80px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Optional shadow */
    z-index: 20;
}

section.header .dropdown .items a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 8px 0;
    text-align: center;
    text-wrap: nowrap;
    padding: 10px 20px;
}

section.header .dropdown .items a:hover {
    /* text-decoration: underline; */
    background: #FFFFFF26;
}

div.header_spacer{
    width: 100%;
    height: 160px;
}

.container{
    width: 1560px;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

@media screen and (min-width: 960px)  and (max-width: 1600px) {   /* optional: avoid catching huge tablets */ /* 100% guarantee: this is a phone forcing desktop mode */
    .container{
        width: 100%;
        min-width: 960px
    }

    section.header .container{
        width: 960px;
        justify-content: space-between;
    }

    /* .header .phone_call{
        display: none;
    } */

    section.header a.link{
        /* width: min-content; */
        text-align: center;
    }

    section.header .left,
    section.header .right{
        gap: 10px;
    }

    
    section.header img.logo{
        width: 160px;
    }

    section.header a.link img{
        width: 180px;
    }

    section.header div, section.header a, section.header span{
        font-size: 16px !important;
    }

    section.header a.button{
        width: 120px;
        height: 50px;
    }

}






section.search{
    height: 882px;
    background-image: url("/img/bus.png");
    background-repeat: no-repeat;
    background-size: cover;
    margin: auto !important;
    margin-top: 160px !important;
}
section.search.ticket_select{
    background-image: none;
    background-color: #ECFAFE;
    height: 200px;
}

section.search .container{
    flex-direction: column;
    justify-content: center;
}

section.search .caption{
    width: 100%;
    font-weight: 500;
    font-size: 64px;
    line-height: 100%;
    color: #FFFFFF;
    text-shadow: 6px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
}

section.search .search_box{
    width: 100%;
    height: 110px;
    background: #FFFFFF80;
    box-shadow: 0px 0px 30px 15px #00000033;
    border-radius: 10px;
    margin-top: 30px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    flex-wrap: wrap;
    gap: 20px;
}
section.search.ticket_select .search_box{
    box-shadow: 0px 0px 30px 0px #00000033;

}

section.search .reverse{
    width: 24px;
    height: 20px;
    background: url("/img/reverse.svg");
    background-size: cover;

    cursor: pointer;
    z-index: 2;
}

section.search #from_stop_search,
section.search #to_stop_search{
    width: 336px;
    height: 50px;
}

section.search #from_stop_search .selected::before,
section.search #from_stop_search input::before{
    content: '';
    position: absolute;
    width: 21px;
    height: 25px;
    left: 15px;
    background-image: url('/img/search_bus.svg');
    z-index: 14;
}

section.search #to_stop_search .selected::before,
section.search #to_stop_search input::before{
    content: '';
    position: absolute;
    width: 18px;
    height: 26px;
    left: 15px;
    background-image: url('/img/search_marker.svg');
    z-index: 14;
}

section.search .date{
    width: 450px;
    height: 50px;
    font-size: 22px;
    color: #898989;
    border: 1px solid #898989;
    border-radius: 10px;
    position: relative;
    background-color: white;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    gap: 15px;
    padding: 0 15px;
}

section.search div.date::before{
    content: '';
    position: absolute;
    width: 27px;
    height: 22px;
    left: 15px;
    background-image: url('/img/search_calendar.svg');
    z-index: 5;
}

section.search .date input{
    width: 100%;
    height: 50px;
    font-size: 22px;
    padding: 0 40px;
    border: 0;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.5s;
    z-index: 5;
    position: relative;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    color: #898989;
    background: transparent;
}

section.search .date a{
    width: 100px;
    height: 25px;
    font-size: 20px;
    color: #4370d8;
    cursor: pointer;
    text-decoration: none;
    color: #898989;
    border: 1px solid #898989;
    border-radius: 7px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.search .btn_search{
    background: #4370d8;
    color: #ffffff;
    font-size: 26px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    width: 200px;
    height: 70px;
    border-radius: 10px;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    box-shadow: 0px 4px 4px 0px #00000040;
    border: 0;
}


section.search .map{
    margin-top: 100px;
}


section.search .map_button{
    background: #4370d8;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    margin: auto;
    border: 1px solid #4370d8;

    width: 300px;
    height: 70px;
    border-radius: 10px;

    box-shadow: 0px 4px 4px 0px #00000040;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    
}
section.search .map_button img{
    width: 70px;
}
section.search .map_button span{
    margin-left: 20px;
    font-size: 26px;
}



@media screen and (min-width: 960px)  and (max-width: 1600px) {

    section.search .search_box{
        width: 920px;
        height: 180px;
    }

    section.search .caption{
        width: 920px;
    }

    section.search .btn_search{
        height: 50px;
        width: 250px;
    }

}



section.calendar.ticket_select{
    width: 100%;
    height: 170px;
    background-color: #ECFAFE;

}

section.calendar.ticket_select .container{
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;

}

section.calendar.ticket_select .date{
    width: 130px;
    height: 35px;
    font-size: 18px;
    background-color: white;
    border: 1px solid #898989;
    border-radius: 10px;    
    color: #898989;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer

}
section.calendar.ticket_select .date.d_0{
    width: 205px;
    height: 50px;
    font-size: 26px;
    box-shadow: 0px 0px 30px 10px #B4ECFA;

}
section.calendar.ticket_select .left,
section.calendar.ticket_select .right{
    width: 50px;
    height: 50px;
    position: relative;
    cursor: pointer;
}

section.calendar.ticket_select .left::before,
section.calendar.ticket_select .right::before{    
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-top: 3px solid #4370d8;
    border-left: 3px solid #4370d8;
    transform: rotate(-45deg);
    top: 15px;
    left: 15px;
}
section.calendar.ticket_select .right::before{
    transform: rotate(135deg);
}


section.calendar.ticket_select .date.inactive{
    background-color: #f0f0f0;    
    border: 1px solid #f0f0f0;
}

section.calendar.ticket_select .left.inactive::before,
section.calendar.ticket_select .right.inactive::before{
    border-top: 3px solid #898989;
    border-left: 3px solid #898989;
}
section.calendar.ticket_select div.inactive{
    cursor: default;
}







section.ticket_select #loading_screen{
    /* display: flex; */
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    width: 1500px;
    margin-bottom: 60px;
    height: 400px;
}

section.ticket_select #loading_screen #lottie-container{
    width: 200px; 
    height: 200px; 
    margin: auto;
}


section.ticket_select{
    background-image: none;
    background-color: #ECFAFE;
    min-height: 200px;
}

section.ticket_select .container{
    flex-direction: column;
    justify-content: center;
}


section.ticket_select .results{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    width: 1500px;
    margin-bottom: 60px;
    min-height: 400px
}

section.ticket_select .results .result{
    border-radius: 10px;
    width: 100%;
    background-color: #fff;
    border: 1px solid #898989;    
    scroll-margin-top: 180px;
}
section.ticket_select .results .result:hover{
    box-shadow: 0px 0px 30px 0px #B4ECFA;
}
section.ticket_select .results .result.active{
    box-shadow: 0px 0px 30px 10px #B4ECFA;
}

section.ticket_select .results .result{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    
}

section.ticket_select .result .header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 210px;
}

section.ticket_select .result .header .trip_name{

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 1050px;
    height: 210px;
    padding: 40px 50px 10px 50px;
    gap: 20px;
    border-right: 1px solid #898989;
    height: 210px;
}

section.ticket_select .result .header .price_button{

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 450px;
    height: 210px;
    gap: 10px;
    cursor: pointer;

}

section.ticket_select .result .header .price_button:hover{
    background-color: #f8f8f8;
    border-right: 1px solid #c0c0c0;
    border-top-right-radius: 10px;
}

section.ticket_select .result .header .price_button .price{
    font-weight: 500;
    font-size: 40px;
    line-height: 100%;
}
section.ticket_select .result .header .price_button .button{
    background: #4370D84D;
    width: 215px;
    height: 99px;
    border-radius: 10px;
    gap: 10px;
    padding-top: 4px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;

} 
section.ticket_select .result .header .price_button .button button.select_trip{
    width: 205px;
    height: 60px;
    border-radius: 10px;
    background: #4370D8;
    color: white;
    font-size: 22px;
    border: 0;
    cursor: pointer;
}
section.ticket_select .result .header .price_button .button .sub_place{
    width: 181px;
    height: 15px; 
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    text-align: center;
    color: #000;
}

section.ticket_select .result .header .trip_name div.route{
    text-wrap: nowrap;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 150px;
}

section.ticket_select .result div.route > div{
    text-wrap: nowrap;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
    font-weight: 400;
    color: #898989;
}

section.ticket_select .result div.route > div > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.ticket_select .result div.route > div > div img{
    width: 60px;
    height: 5px;
}
section.ticket_select .result div.route > div >  div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
section.ticket_select .result div.route > div > div:first-child{
    height: 39px;
    font-size: 32px;
    line-height: 100%;
}
section.ticket_select .result div.route > div > div:last-child{
    height: 27px;
    font-size: 22px;
    line-height: 100%;
    color: #4370D8;
}
section.ticket_select .result div.route > div:nth-child(2n),
section.ticket_select .result div.route > div:nth-child(2n) > div{
    width: 100%;
}
section.ticket_select .result div.route > div.half:nth-child(2n){
    width: 25%;
}
    



section.ticket_select .result div.route b{
    font-weight: 400;
    color: #000;
}

section.ticket_select .result .header .trip_name .links{

    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #898989;
    width: 100%;
}
section.ticket_select .result .header .trip_name .links div{
    width: 33%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #898989;
    height: 30px;
}
section.ticket_select .result .header .trip_name .links div:first-child{
    border: 0;
}
section.ticket_select .result .header .trip_name .links a{
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-decoration: none;
    color: #c3c3c3;
}
section.ticket_select .result .header .trip_name .links a:hover{
    text-decoration: underline;
    color: #898989;
}


section.ticket_select .result .body{
    display: none;
    flex-direction: column;
    justify-content: space;
    width: 1500px;
}
section.ticket_select .result .body.active{
    display: flex
}

section.ticket_select .result .ticket_select{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-top: 1px solid #898989;
}


section.ticket_select .result .ticket_select .left{
    width: 1050px;
    height: 610px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    padding: 30px 50px;
}

section.ticket_select .result .ticket_select .left .bus_dqn{
    width: 100%;
    display: flex;
    height: 60px;
    font-weight: Bold;
    font-size: 18px;
    color: #898989;
}

section.ticket_select .result .ticket_select .left .bus_structure{
    width: 950px;
    height: 315px;
    overflow-x: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bus_scheme{
    /* #width: 750px; */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: fit-content;
    margin: auto;
}
.bus_scheme .front{
    height: 288px;
    width: 143px;

    background-image: url("/img/bus_front.svg");
    background-size: contain;
    background-repeat: no-repeat;

}

.bus_scheme .middle{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 288px;
    width: 56px;
    border: 1px solid #a0a0a0;
    border-right: 0;
    border-left: 0;
}
.bus_scheme .back{
    height: 288px;
    width: 24px;
    border: 1px solid #a0a0a0;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
    border-left: 0;
}
.bus_scheme > div {
    margin: 0 0;
}
.bus_scheme .middle .seat{
    width: 48px;
    height: 48px;
    background-image: url("/img/grey_seat2.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin: 5px;
    position: relative;
}
.bus_scheme .middle .blank{
    height: 48px;
    margin: 5px;
}
.bus_scheme .seat.blue{
    background-image: url("/img/blue_seat2.png");
    cursor: pointer;
}
.bus_scheme .seat.red{
    background-image: url("/img/red_seat2.png");
    cursor: pointer;
}
.bus_scheme .seat.green{
    background-image: url("/img/green_seat2.png");
    cursor: pointer;
}
.bus_scheme .seat.driver{
    background-image: url("/img/yellow_seat2.png");
    transform: rotateZ(0);
}
.bus_scheme .seat.none{
    cursor: pointer;

}
.bus_scheme .seat .close_icon{
    position: absolute;
    right: 2px;
    top: 2px;
    cursor: pointer;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    content: '+';
    transform: rotate(45deg);
    color: white;
    background: red;
    line-height: 10px;
    font-size: 12px;
    text-align: center;
    display: none;
}
.bus_scheme .seat .close_icon.active {
    display: block;
}
.bus_scheme .seat .close_icon:hover{
    right: 1px;
    top: 1px;
    width: 15px;
    height: 15px;
    line-height: 12px;
    font-size: 15px;

}
.bus_scheme .seat span{
    position: absolute;
    top: 12px;
    left: 7px;
    width: 30px;
    text-align: center;
}



section.ticket_select .result .ticket_select .left .bus_info{
    width: 100%;
    display: flex;
    height: 60px;
    font-weight: 500;
    font-size: 18px;
    color: #898989;
}



section.ticket_select .result .ticket_select .right{
    width: 450px;
    height: 610px;
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

section.ticket_select .result .ticket_select .right .ticket_icons{
    width: 350px;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}
section.ticket_select .result .ticket_select .right .ticket_icons .seat{
    width: 50px;
    height: 50px;
    background-image: url("/img/grey_seat2.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;

}
section.ticket_select .result .ticket_select .right .ticket_icons .seat.blue{
    background-image: url("/img/blue_seat2.png");
    cursor: pointer;
}
section.ticket_select .result .ticket_select .right .ticket_icons .seat.red{
    background-image: url("/img/red_seat2.png");
    cursor: pointer;
}
section.ticket_select .result .ticket_select .right .ticket_icons .seat.green{
    background-image: url("/img/green_seat2.png");
    cursor: pointer;
}
section.ticket_select .result .ticket_select .right .ticket_icons .seat.active{
    box-shadow: 0px 0px 10px 0px #00000066;
    border-top-left-radius: 14px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 14px;
}
section.ticket_select .result .ticket_select .right .ticket_icons .seat span{
    position: absolute;
    top: 13px;
    left: 8px;
    width: 30px;
    text-align: center;
}


section.ticket_select .result .ticket_select .right .foreign_check{
    width: 350px;
    height: 25px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    color: #898989;
    font-size: 18px;;
}

section.ticket_select .result .ticket_select .right .info{
    width: 350px;
    height: 20px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    color: #898989;
    font-size: 18px;;
}
section.ticket_select .result .ticket_select .right .info span{
    color: white;
    background-color: #c3c3c3;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 14px;
    text-align: center;
    line-height: 20px;
    font-weight: bold;
    cursor: pointer;
}
section.ticket_select .result .ticket_select .right .info img{
    height: 24px;
    width: 50px;
}

section.ticket_select .result .ticket_select .right .input{
    height: 50px;
    width: 350px;
    border: 1px solid #898989;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
section.ticket_select .result .ticket_select .right .input input{
    width: 100%;
    height: 30px;
    border: 0;
    font-size: 18px;
    color: #000;
    padding: 0 20px;
    outline: none;
}
section.ticket_select .result .ticket_select .right .input select{
    height: 30px;
    border: 0;
    font-size: 18px;
    color: #000;
    width: 85px;
    padding: 0 15px;
    outline: none;
}

section.ticket_select .result .ticket_select .right .input select#vetandashliq{
    width: 100%;
    height: 48px;
    border-radius: 10px;
}
section.ticket_select .result .ticket_select .right .input input[name="id_card_number"]{
    border-left: 1px solid #898989;
}
section.ticket_select .result .ticket_select .right .input input[name="ad_soyad"]{
    height: 48px;
    border-radius: 10px;   
}

section.ticket_select .result .ticket_select .right .row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 350px;
}
section.ticket_select .result .ticket_select .right button{
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: white;
    border: 0;
    cursor: pointer;
    font-size: 18px;
    gap: 10px;
}
section.ticket_select .result .ticket_select .right button.red{
    background: #FF0000;
    text-transform: uppercase;
}
section.ticket_select .result .ticket_select .right button.grey{
    background-color: #c3c3c3;
    color: #898989;
    border: 1px solid #898989;
    cursor: default;
}
section.ticket_select .result .ticket_select .right button.grey.active{
    background-color: #898989;
    color: white;
    cursor: pointer;
}

section.ticket_select .result .ticket_select .right button.black{
    background-color: #c3c3c3;
    color: #898989;
    border: 1px solid #898989;
    cursor: default;
}
section.ticket_select .result .ticket_select .right button.black.active{
    background-color: black;
    color: white;
    cursor: pointer;
}

section.ticket_select .result .ticket_select .right button.white{
    background-color: #c3c3c3;
    color: #898989;
    border: 1px solid #898989;
    cursor: default;
}
section.ticket_select .result .ticket_select .right button.white.active{
    background: #fff;
    color: #000;
    border: 1px solid #898989;
    cursor: pointer;
}





section.ticket_select .result .footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 110px;
    padding: 30px 50px;
    border-top: 1px solid #898989;
}

section.ticket_select .result .footer .trip_plan{
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    border-radius: 10px;
    border: 1px solid #898989;

}


#popup_seat{
    background-color: #fff;
    padding: 10px;
    box-shadow: black 1px 1px 10px 0px;
    z-index: 10;
}
#popup_seat > div {
    display: flex;
    flex-direction: row;
    z-index: 10;
}
#popup_seat > div > div{
    margin: 10px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
}
#popup_seat .outline{
    z-index: 9;
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}















section.why_us{
    width: 100%;
    height: 876px;
    background-color: white;
    margin: auto !important;
}

section.why_us .container{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

section.why_us div.caption{
    font: Inter, sans-serif;
    color: #898989;
    text-align: center;
    font-weight: 500;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: 0%;    
    text-shadow: 6px 4px 4px #00000040;
}

section.why_us .items{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

section.why_us .items .item{
    width: 375px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

section.why_us .items .item a{
    width: 375px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;

    text-decoration: none;
}

section.why_us .items .item .img{
    width: 100px;
    height: 100px;
    border-width: 2px;
    border-style: dashed;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
}

section.why_us .items .item .img img{
    width: 50px;
    height: 50px;
}

section.why_us .items .item .item_caption{
    font-weight: 500;
    line-height: 100%;
    text-align: center;
    color: #4370d8;
    
    font-size: 32px;
    line-height: 100%;
    text-align: center;
    height: 80px;
    width: 330px;

    display: flex;
    justify-content: center;
    align-items: center;

}

section.why_us .items .item .text{
    width: 375px;
    height: 330px;
    border-radius: 10px;
    padding: 30px;
    gap: 10px;
    border: 2px dashed #4370D8;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.why_us .items .item .text span{
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    text-align: center;
    color: #898989;

    width: 303px;

}



@media screen and (min-width: 960px)  and (max-width: 1600px) {

    section.why_us{
        height: 1400px;
    }

    .container{
        width: 920px;
        justify-content: center;
    }

}



section.stats{
    width: 100%;
    height: 824px;
    background-image: url("/img/bus2.png");
    background-repeat: no-repeat;
    background-size: cover;
    margin: auto !important;
}

section.stats .container{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

section.stats .caption{
    width: 100%;
    font-weight: 500;
    font-size: 64px;
    line-height: 100%;
    color: #FFFFFF;
    text-shadow: 6px 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    overflow: hidden;
}

section.stats .caption .line{
    width: 100vw;
    height: 0;
    border: 1px dashed #FFFFFF;

}

section.stats .caption .text{
    text-align: center;
    text-wrap: nowrap;
}

section.stats .items{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

section.stats .items .item{
    width: 375px;
    height: 225px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

section.stats .items .item img{
    height: 87px;
}

section.stats .items .item .number{
    font-weight: 500;
    font-size: 42px;
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;

    height: 84px;
    display: flex;
    justify-content: center;
    align-items: center;
}



section.footer.light{
    color: #4370D8;
    background-color: white;
}

section.footer.dark{
    color: white;
    background-color: #4370D8;
}

section.footer{
    width: 100%;
    height: 370px;

}

section.footer .container{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

section.footer hr{
    width: 100%;
    border-bottom: 1px solid #4370D8;
    
}

section.footer .items{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin: auto;
}

section.footer .items .item{
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    text-align: center;
}

section.footer .items .item{
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

section.footer .items .item.links{
    align-items: flex-start;
}

section.footer a{
    text-decoration: none;
    color: #4370D8;
}

section.footer.dark a{
    color: white;
}

section.footer .items .item.apps{
    align-items: center;
    gap: 20px;
}

section.footer .items .item.apps a{
    width: 230px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.footer .items .item.apps .apps{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

section.footer .copyright{
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}



section.footer .phone_call, 
section.footer .phone_number{
    font-weight: 500;
    font-style: Medium;
    font-size: 22px;
    letter-spacing: 0%;
    color: white;
}


@media screen and (min-width: 960px)  and (max-width: 1600px) {

    section.footer{
        height: 540px;
    }

}


section.tickets{
    width: 100%;
    min-height: 600px;
    background: #ECFAFE;


    margin: auto !important;
    padding: 100px 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 60px 0;
}

section.tickets .container{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    margin-top: 0;
}

section.tickets .tab_headers{
    width: 100%;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

section.tickets .tab_headers .tab_head{
    width: 260px;
    height: 60px;
    font-weight: 500;
    font-size: 22px;
    color: #4370D8;

    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;

    border: 2px solid #4370D8;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

}

section.tickets .tab_headers .tab_head.active{
    background: #4370D8;
    color: white;
}

section.tickets .table{
    width: 100%;
    overflow-x: auto;
}


section.tickets .table table{
    width: 100%;
    border-collapse: separate;
    border: 2px solid #4370D8;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    border-spacing: 0;
    background: white;
}

section.tickets .table table b{
    font-weight: 500;
    color: #000;
}

section.tickets .table table tr{
    font-size: 18px;
}

section.tickets .table table th{
    font-weight: 500;
}

section.tickets .table table thead tr{
    background: #4370D8;
    color: white;
    font-weight: 500;
    height: 80px;
}

section.tickets .table table tbody tr{
    color: #898989;
    font-weight: 500;
    height: 120px;
}

section.tickets .table table tbody td{
    text-align: center;
    border-bottom: 2px solid #4370D8;
    padding: 10px;
}

section.tickets .table table tbody td.trip_date{
    color: #000;
}

section.tickets .table table tbody td.route > div{
    text-wrap: nowrap;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

section.tickets .table table tbody td.route > div > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.tickets .table table tbody td.route > div > div img{
    width: 60px;
    height: 5px;
}
section.tickets .table table tbody td.route > div > div > div{
    display: flex;
    justify-content: center;
    align-items: center;
}
section.tickets .table table tbody td.route > div > div > div:first-child{
    height: 27px;
    font-size: 22px;
    line-height: 100%;
}
section.tickets .table table tbody td.route > div > div > div:last-child{
    height: 15px;
    font-size: 12px;
    line-height: 100%;
    color: #4370D8;
}

section.tickets .table table tbody td a{
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: #B4ECFA;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;    
    margin: auto;
}
section.tickets .table table tbody td a.pdf img{
    width: 40px;
    height: 40px;
}

section.tickets .table table tbody td a.bt-return{
    width: 160px;
    color: #000;
    text-transform: uppercase;
}

section.tickets .table table span.returned{
    width: 160px;
    height: 60px;
    border-radius: 10px;
    background-color: #898989;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    padding: 0 20px;
}

section.show_content {
    width: 100%;
    min-height: 600px;
    background: #ECFAFE;

    margin: auto !important;
    margin-top: 160px !important;
    padding: 100px 0;
}

section.show_content .container{
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 60px 80px;
    background: white;
    border-radius: 10px;
    border: 1px solid #B4ECFA;
}







section.login{
    width: 100%;
    height: 100vh;
    background: url('/img/bus3.png');
    background-size: cover;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;

}

section.login .container{
    min-width: 480px;
    width: 50%;
    height: 100%;
    overflow: auto;
    background: #FFFFFFB2;
    backdrop-filter: blur(15px);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-right: 0;
}

section.login .login_form{
    width: 420px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: auto 0;
    padding: 40px 0;
}

section.login .login_form .title{
    width: 100%;
    align-items: start;
    line-height: 100%;
    color: #4370D8;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
}

section.login .login_form .alt_text{
    width: 100%;
    align-items: start;
    font-weight: 500;
    font-size: 18px;
    color: #000;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;

}

section.login .login_form .alt_text a{
    color: #4370D8;
    text-decoration: none;
    font-weight: 500;
}

section.login .login_form .alt_text a:hover{
    text-decoration: underline;
}

section.login .login_form form{
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

section.login .login_form form .box{
    width: 100%;
    height: 50px;
    background: #FFFFFF;
    border: 1px solid #898989;
    border-radius: 10px;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    position: relative;
}

section.login .login_form form .box img{
    width: 32px;
    height: 32px;
    left: 8px;
    position: absolute;
}

section.login .login_form form .box input[type="text"],
section.login .login_form form .box input[type="password"],
section.login .login_form form .box input[type="tel"]{
    width: fit-content;
    height: 22px;
    font-size: 22px;
    border: 0;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.5s;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    color: #898989;
    margin-left: 60px;
    width: calc(100% - 80px);
}

section.login .login_form form .box span{
    position: absolute;
    right: 15px;
    cursor: pointer;
    font-size: 22px;
    user-select: none;
    width: 24px;
    height: 24px;

    background: url('/img/eye.svg');
}

section.login .login_form form .sub_password{
    width: 100%;
    margin-top: -10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    font-size: 14px;
}
section.login .login_form form .sub_password .remember{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    color: #898989;
    font-size: 14px;
}
section.login .login_form form .sub_password a{
    font-weight: 500;
    font-size: 14px;
    color: #898989;
    text-decoration: none;
}
section.login .login_form form .sub_password a:hover{
    text-decoration: underline;
}   
section.login .login_form form .sub_password input[type="checkbox"]{
    width: 14px;
    height: 14px;
    cursor: pointer;
}

section.login .login_form form .gender{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    color: #4370D8;
    font-size: 14px;
}

section.login .login_form form .gender .gen{
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

section.login .login_form form .gender .gen input[type="radio"]{
    width: 14px;
    height: 14px;
    cursor: pointer;
}
section.login .login_form form .gender .gen label{
    font-size: 14px;
    cursor: pointer;
}

section.login .login_form form .captcha_box{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
section.login .login_form form .captcha_box .captcha_image{
    width: 75px;
    height: 40px;
    border: 1px solid #898989;
    border-radius: 10px;

    display: flex;
    justify-content: center;
    align-items: center;
}
section.login .login_form form .captcha_box .captcha_image img{
    width: 100%;
    height: 100%;
}
section.login .login_form form .captcha_box input[type="text"]{
    margin-left: 10px;
}

section.login .login_form form .submit{
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.login .login_form form .submit button{
    width: 100%;
    height: 50px;
    background: #4370D8;
    border-radius: 10px;
    border: 0;
    font-weight: 500;
    font-size: 26px;
    color: #FFFFFF;
    cursor: pointer;
    box-shadow: 0px 4px 4px 0px #00000040;

}

section.login .login_form form .submit button:hover{
    background: #335bbd;
}

section.login .login_form form .or_login{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

section.login .login_form form .or_login div{
    font-weight: 500;
    font-size: 14px;
    color: #898989;
    white-space: nowrap;
}

section.login .login_form form .or_login hr{
    width: 100%;
    border-bottom: 1px solid #898989;
}

section.login .login_form form .google_login_container{
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

section.login .login_form form .google_login_container .google_login{
    width: 100%;
    height: 50px;
    background: #FFFFFF80;
    border: 1px solid #898989;
    box-shadow: 0px 4px 4px 0px #00000040;
    color : #000000;
    font-size: 16px;
    text-decoration: none;


    border-radius: 10px;
    cursor: pointer;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

section.login .login_form form .google_login_container .google_login img{
    width: 24px;
    height: 24px;
}

@media screen and (min-width: 960px)  and (max-width: 1200px) {

    section.login .container{
        width: 100%;
        background: #FFFFFF80;
        backdrop-filter: blur(5px);
    }

}





section.trips_plan{
    margin-top: 160px !important;
    background-color: #ECFAFE;
}

section.trips_plan .container{
    flex-direction: column;
    justify-content: flex-start;
    min-height: 500px;
}

section.trips_plan .search_box{
    width: 100%;
    height: 150px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 50px;
    flex-wrap: wrap;
    gap: 20px;
}

section.trips_plan .reverse{
    width: 24px;
    height: 20px;
    background: url("/img/reverse.svg");
    background-size: cover;

    cursor: pointer;
    z-index: 2;
}

section.trips_plan #from_stop_search,
section.trips_plan #to_stop_search{
    width: 336px;
    height: 50px;
}

section.trips_plan #from_stop_search .selected::before,
section.trips_plan #from_stop_search input::before{
    content: '';
    position: absolute;
    width: 21px;
    height: 25px;
    left: 15px;
    background-image: url('/img/search_bus.svg');
    z-index: 14
}

section.trips_plan #to_stop_search .selected::before,
section.trips_plan #to_stop_search input::before{
    content: '';
    position: absolute;
    width: 18px;
    height: 26px;
    left: 15px;
    background-image: url('/img/search_marker.svg');
    z-index: 14
}

section.trips_plan .date{
    width: 450px;
    height: 50px;
    font-size: 22px;
    color: #898989;
    border: 1px solid #898989;
    border-radius: 10px;
    position: relative;
    background-color: white;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    gap: 15px;
    padding: 0 15px;
}

section.trips_plan div.date::before{
    content: '';
    position: absolute;
    width: 27px;
    height: 22px;
    left: 15px;
    background-image: url('/img/search_calendar.svg');
    z-index: 5;
}

section.trips_plan .date input{
    width: 100%;
    height: 50px;
    font-size: 22px;
    padding: 0 40px;
    border: 0;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.5s;
    z-index: 5;
    position: relative;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    color: #898989;
    background: transparent;
}

section.trips_plan .date a{
    width: 100px;
    height: 25px;
    font-size: 20px;
    color: #4370d8;
    cursor: pointer;
    text-decoration: none;
    color: #898989;
    border: 1px solid #898989;
    border-radius: 7px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.trips_plan .btn_search{
    background: #4370d8;
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    width: 130px;
    height: 60px;
    border-radius: 10px;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    box-shadow: 0px 4px 4px 0px #00000040;
    border: 0;
}


section.trips_plan .results{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    width: 1500px;
    margin-bottom: 60px;
}

section.trips_plan .results .result{
    box-shadow: 0px 0px 30px 10px #B4ECFA;
    border-radius: 10px;
    width: 100%;
    background-color: #fff;
    border: 1px solid #898989
}

section.trips_plan .result .header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    height: 70px;
    width: 100%;
    position: relative;
    font-size: 22px;
}
section.trips_plan .result .header .main{
    color: #4370D8;
}
section.trips_plan .result .header .btToggle{
    position: absolute;
    top: 0;
    right: 0;
    height: 70px;
    width: 70px;
    background: #4370D8;
    border-radius: 10px;
    cursor: pointer;
}
section.trips_plan .result .header .btToggle::before{
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-top: 1px solid white;
    border-left: 1px solid white;
    transform: rotate(-135deg);
    top: 30px;
    left: 30px;
}
section.trips_plan .result .header .btToggle.active::before{
    transform: rotate(45deg);
}

section.trips_plan .result .routes{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: 0;
}
section.trips_plan .result .routes.active{
    display: flex;
    border-top: 1px solid #898989;
}

section.trips_plan .result .routes .route{
    height: 90px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
}
section.trips_plan .result .route .blue{
    color: #4370D8;
    font-size: 18px;
}
section.trips_plan .result .route > .time{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
section.trips_plan .result .route > .time > .time{
    font-size: 32px;
}
section.trips_plan .result .route > .time > .stop{
    font-size: 18px;
    color: #C3C3C3;
}

section.trips_plan .result .route .duration{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #C3C3C3;
}
section.trips_plan .result .route .duration .point{
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #C3C3C3;
}
section.trips_plan .result .route .duration .line{
    width: 120px;
    height: 1px;
    background: #C3C3C3;
}
section.trips_plan .result .route .duration .numbers{
    width: 250px;
    height: 25px;
    font-size: 12px;
    color: #C3C3C3;
    display:flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #C3C3C3;
    border-radius: 16px;

}




@media screen and (min-width: 960px)  and (max-width: 1600px) {

    section.trips_plan .search_box{
        
        padding: 0;

    }
        
    section.trips_plan .results{
        width: 920px;
    }

    section.trips_plan .result .header{
        font-size: 16px;
        padding: 0 60px;
        height: 50px;
    }
    section.trips_plan .result .header .btToggle{
        width: 50px;
        height: 50px;
    }
    section.trips_plan .result .header .btToggle::before{
        top: 20px;
        left: 20px
    }
    
    section.trips_plan .result .routes .route{
        padding: 0 60px;
    }

    section.trips_plan .result .route .blue{
        font-size: 14px;
    }

    section.trips_plan .result .route > .time > .time{
        font-size: 20px;
    }
    section.trips_plan .result .route > .time > .stop{
        font-size: 14px;
    }


    section.trips_plan .result .route .duration .line{
        width: 60px;
    }

    section.trips_plan .result .route .duration .numbers{
        width: 160px;
    }

}













.filter_select{
    width: 100%;
    position: relative;
    background: #FFFFFF;
    font-size: 22px;
    border-radius: 10px;
    border-width: 1px;
}


.filter_select .outline{
    z-index: 5;
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.filter_select .selected{

    width: 336px;
    height: 50px;
    padding: 0 5px;
    border: 0;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.5s;
    position: relative;
    background: #FFFFFF;

    border-radius: 10px;
    border-width: 1px;
    padding-left: 50px;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    color: #898989;
    border: 1px solid #898989;

}


.filter_select .popup{
    width: 100%;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    box-shadow: 1px 1px 3px #898989;
    z-index: 12;
}
.filter_select .popup input{
    width: 100%;
    height: 50px;
    font-size: 22px;
    line-height: 24px;
    padding: 0 50px;
    border: 0;
    border-bottom: 2px solid #898989;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.5s;
    z-index: 12;
    position: relative;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    color: #898989;


}
.filter_select .popup .items{
    z-index: 12;
    max-height: 150px;
    overflow-y: auto;

}
.filter_select .popup .items div{
    box-sizing: border-box;
    padding: 0 15px;
    cursor: pointer;
    height: 50px;
    width: 100%;

    
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    color: #898989;

}
.filter_select .popup .items div:hover{
    background: #eee;
}


input{
    outline: none;
}










        .qr_popup{
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);

            width: 635px;
            height: 473px;
            border-radius: 8px;
            background: #ffffff;
            box-shadow: 0px 3px 4px rgba(100,100,100,0.5);

            display: none;
            z-index: 20;
        }

        .qr_popup .close{
            position: relative;
            top: 32px;
            right: 40px;

            font-family: Roboto;
            font-size: 18px;
            font-weight: bold;
            color: #000;
        }

        .qr_popup .qr{

            position: relative;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);

            width: 363px;
            height: 363px;
        }

        .qr_popup .code{
            position: relative;
            top: 70px;
            left: 278px;

            width: 100px;
            height: 22px;
            font-family: Roboto;
            font-size: 18px;
            font-weight: 300;
            line-height: 22px;


        }

        .qr_popup .outline{
            position: fixed;
            top: 50%;
            left: 50%;

            width: 100vw;
            height: 100vh;

            z-index: 19;
            background: transparent;

            transform: translate(-50%, -50%);

        }







.popup_alert .popup{
    background-color: #fff;
    padding: 20px;
    box-shadow: 1px 1px 10px #0008;

    z-index: 10;
    border-radius: 20px;

    position: fixed;
    top: calc(50% - 150px);
    left: calc(50% - 200px);
    width: 300px;
    height: 200px;
    gap: 20px;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
}
.popup_alert .text{
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.popup_alert .buttons{
    z-index: 10;
    gap: 10px;
    display: flex;
}
.popup_alert button{
    width: 160px;
    height: 40px;
    color: white;
    background: red;
    border: 0;
    border-radius: 5px;
    font-size: 20px;
    z-index: 10;
    cursor: pointer;
    text-transform: uppercase;
}

.popup_alert .icon{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-size: 64px;
    line-height: 64px;
    color: white;
    text-align: center;
    z-index: 12;
}

.popup_alert.error .icon{
    background-color: red;
    transform: rotate(45deg);
}
.popup_alert.error .icon:after{
    content: '+';
}
.popup_alert.error button{
    background: #f00;
}
.popup_alert.error button:hover{
    background: #ff0000dd;
}

.popup_alert.info .icon{
    background-color: #4370d8;
}
.popup_alert.info .icon:after{
    content: 'i';
}
.popup_alert.info button {
    background: #4370d8;
}
.popup_alert.info button:hover{
    background: #4370d8dd;
}


.popup_alert.warning .icon{
    background-color: orange;
}
.popup_alert.warning .icon:after{
    content: '!';
}
.popup_alert.warning button {
    background: #ffaa44;
}
.popup_alert.warning button:hover{
    background: #ffaa44dd;
}

.popup_alert.success .icon{
    background-color: green;
    position: relative;
}
.popup_alert.success .icon:after{
    content: '';
    width: 20px;
    height: 35px;
    /* background: red; */
    border-bottom: 8px solid white;
    border-right: 8px solid white;
    transform: rotate(45deg);
    position: absolute;
    top: 8px;
    left: 18px;
}
.popup_alert.success button {
    background: #008000;
}
.popup_alert.success button:hover{
    background: #008000dd;
}

.popup_alert .outline{
    z-index: 5;
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}


#popup_qarabagd, #popup_blacklist, #popup_fin, #popup_fin4{

            
    background-color: #fff;
    padding: 20px;
    box-shadow: 1px 1px 10px #0008;

    z-index: 10;
    border-radius: 20px;

    position: fixed;
    top: calc(50% - 150px);
    left: calc(50% - 200px);
    width: 800px;
    height: 600px;
    gap: 20px;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;

}

    


.bi-arrow {
  position: relative;
  width:  100%;           /* length of the shaft */
  height: 1px;
  background: #c3c3c3;
}

.bi-arrow::before,
.bi-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
}

.bi-arrow::before {
  left: -12px;             /* move left arrow outside the shaft */
  border-width: 10px 12px 10px 0;
  border-color: transparent #c3c3c3 transparent transparent;
  transform: translateY(-50%);
}

.bi-arrow::after {
  right: -12px;            /* move right arrow outside */
  border-width: 10px 0 10px 12px;
  border-color: transparent transparent transparent #c3c3c3;
  transform: translateY(-50%);
}        




.bi-circle {
  position: relative;
  width:  100%;           /* length of the shaft */
  height: 1px;
  background: #c3c3c3;
}


.bi-circle::before,
.bi-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c3c3c3;
  top: -2px;
}

.bi-circle::before {
  left: 0;
}

.bi-circle::after {
  right: 0;
}  

.bi-circle div{
    position: absolute;
    font-size: 12px;
    color: #c3c3c3;
    border: 1px solid #c3c3c3;
    border-radius: 12px;
    width: 120px;
    top: -15px;
    left: calc(50% - 60px);
    z-index: 10;
    background: white;
    text-align: center;
}