body{
    min-height: 100vh;
    overflow-x: hidden;
 }
 tr:nth-child(even) {background-color: #f6f6f6;}
 th {
    background: #ffb199 !important;
 }
p{
    padding: 0;
    margin: 0 !important;
}
.double_column{
    columns: 2;
}
.links li{
    overflow: unset !important;
}
.links .more{
    margin-top:0 !important ;
}
.links{
    padding-left: 0 !important;
}

 a{
    text-decoration: none !important;
    /* color: #fff !important; */
 }
 
 /* Basic styling for the header */
 header {
    background: linear-gradient(130deg, #ff5722 50.5%, #FFF 49.91%);
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ff5722;
}
  .sub-menu .more span{
    display:flex
  }
  .current .sub-menu .current a{
    color:#000 !important
  }
.news_text{
    color: #000;
    font-size: 15px;
}
.skipcont{
    font-size: 14px;
}
.skipcont:hover{
    color: #fff;
}














 /* Add your desktop styles here */
 .desktop-dropdown {
    display: inline-block;
}

.desktop-dropdown .dropdown-content {
    display: block;
}
.mobile-dropdown .dropdown-toggle {
        display: none;
    }

.dropdown-content img{
    width: 30px;
}

/* Add your mobile styles here */
@media (max-width: 768px) {
    .mobile-dropdown .dropdown-content, .dropdown-content1 {
        display: none;
        display: flex;
        left: 19%;
        flex-direction: column;
        position: fixed;
        background: #fff;
    }

    .mobile-dropdown .dropdown-toggle {
        display: block;
    }
    .mobile-dropdown .dropdown-toggle1:hover .dropdown-content1 {
        display: block;
    }

    /* Hide the button on desktop */
    .desktop-dropdown .dropdown-toggle {
        display: none;
    }
    .search-input{
        display: none;
    }
    .header_top .top_head_res, .header_logo {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
}

@media (min-width: 769px){
    .header_top .top_head_res, .header_logo {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
}
















/* radio settings 👇 */

.theme-popup {
    /* total */
    --total_text_color: #e0e0e0;
    --total_font_family: Menlo, Roboto Mono, monospace;
    /* button */
    --btn_bg: #3A3A3A;
    --btn_padding: 0.5em;
    --btn_height: 2em;
    --btn_border_radius: 0.3125em;
    --btn_outline_width: 0.0625em;
    --btn_outline_color: #A0A0A0;
    --btn_outline_offset: 0.0625em;
    --btn_gap: 0.3125em;
    /* list */
    --list_padding: 0.5em;
    --list_bg: var(--btn_bg);
    --list_border_radius: var(--btn_border_radius);
    --list_gap: 0.1875em;
    --list_btn_hover_bg: #5A5656;
    --list_btn_active: #b9b9b970;
    --list_btn_border_radius: 0.25em;
    --list_btn_padding: 0.35em 1em;
    --list_btn_gap: 0.4375em;
    --list_btn_outline_width: 0.0625em;
    --list_btn_outline_color: rgb(212, 210, 210);
    --list_offset: 0.35em;
    --list_btn_font_size: 14px;
    --list_position_left: 0;
    --list_position_right: unset;
    /* 👆 if you want to change sides just switch one property */
    /* from properties to "unset" and the other to 0 */
  }
  
  .theme-popup__button .theme-popup__icons svg,
  #light,
  #dark, 
  #default, 
  #checkbox,
  .theme-popup__list-container {
    display: none;
  }
  
  .theme-popup {
    color: #000;
    font-family: var(--total_font_family);
    position: relative;
    user-select: none;
  }
  
  .theme-popup__list-container {
    position: absolute;
    left: var(--list_position_left);
    right: var(--list_position_right);
    top: calc(var(--btn_height) + var(--list_offset));
  }
  
  .theme-popup__icons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
  }
  
  .theme-popup__button {
    line-height: var(--btn_height);
    background-color: var(--btn_bg);
    padding: 0 var(--btn_padding);
    display: inline-flex;
    align-items: center;
    column-gap: var(--btn_gap);
    border-radius: var(--btn_border_radius);
    border: none;
    color: #fff;
    font-family: inherit;
    outline: none;
    font-weight: bold;
  }
  
  .theme-popup__list {
    position: absolute;
    z-index: 10;
    right: -30px;
    margin: 0;
    list-style-type: none;
    padding: 0;
    border-radius: var(--list_border_radius);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    row-gap: var(--list_gap);
    border:2px solid #000
  }
  
  .theme-popup__list label {
    display: flex;
    align-items: center;
    justify-content: start;
    column-gap: var(--list_btn_gap);
    padding: 10px;
    border-radius: var(--list_btn_border_radius);
    white-space: nowrap;
  }
  
  .theme-popup__list label span {
    font-size: var(--list_btn_font_size);
  }
  
  /* actions */
  
  #checkbox:checked~.theme-popup__button {
    outline: var(--btn_outline_width) solid var(--btn_outline_color);
    outline-offset: var(--btn_outline_offset);
  }
  
  #checkbox:checked~.theme-popup__list-container {
    display: block;
  }
  
  .theme-popup__list label:hover,
  .theme-popup__button:hover,
  #checkbox:checked~.theme-popup__button {
    background-color: var(--list_btn_hover_bg);
  }
  
  #default:checked~.theme-popup__list-container label[for="default"],
  #light:checked~.theme-popup__list-container label[for="light"],
  #dark:checked~.theme-popup__list-container label[for="dark"] {
    background-color: var(--list_btn_active);
    outline: var(--list_btn_outline_width) solid var(--list_btn_outline_color);
  }
  
  #default:checked~label svg.default,
  #light:checked~label svg.sun,
  #dark:checked~label svg.moon {
    display: block;
  }

.theme-popup__list-container .theme-popup__list #fontincrease label:hover p,
.theme-popup__list-container .theme-popup__list #fontreset label:hover p,
.theme-popup__list-container .theme-popup__list #fontdecrease label:hover p{
    color:#fff;
}





















/* Style for the social media icons */
.social-icons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.social-icons li {
    margin-right: 10px;
}

.social-icons a {
    text-decoration: none;
    color: #fff;
}
@media (max-width: 690px){
    .social-icons{
        justify-content: space-between;
        padding: 0 !important;
    }
    
    .social-icons .skipcont{
        color: #000;
    }
    .head_screen, .skipcont{
        line-height: 14px;
    }
    .top_header_btns{
        padding: 6px 0 0 0 !important;
        justify-content: space-between !important;
    }
}
@media (min-width:691px){
    .top_header_btns{
        justify-content: end;
    }
}
/* Style for the search input */
.search-input {
    flex-grow: 1;
    margin: 0 10px;
    padding: 5px;
    border: none;
    border-radius: 5px;
}

/* Style for the three divs on the right */
.header-div {
    background-color: #555;
    color: #fff;
    padding: 10px;
    margin-right: 10px;
    border-radius: 5px;
}

/* Responsive styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    .social-icons {
        margin-top: 10px;
    }
    .search-input {
        margin: 10px 0;
    }
}
.social-icons img{
    max-width: 25px;
}

.pause-play-btn{
    position: absolute;
    z-index: 11;
    bottom: 20px;
    left: 10px;
}

.marquee-container {
    width: 100%;
    height: 40px;
    overflow: hidden;
    position: relative;
    background-color: #333;
    color: #fff;
}

/* Marquee content style */
.marquee-content {

    white-space: nowrap;
    animation: marquee 5s linear infinite;
    font-size: 18px;
    padding-left: 100%; /* Start position is outside the container */
}

/* Keyframes for the marquee animation */
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.w-22{
    width: 22% !important;
}

/* .header_logo img{
    width: auto;
} */

.gov_logo{
    align-items: center;
}
.gov_logo img{
    height: fit-content;
}
/* ******************** navbar start ********************* */


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

nav {
    /*position: fixed;*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 50px;
    background: #ff5722;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

    nav .navbar {
        height: 100%;
        max-width: 1250px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        /* background: red; */
        padding: 0 50px;
    }
.navbar .logo {
    display:none;
}
.navbar .logo a {
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

nav .navbar .nav-links {
    line-height: 50px;
    height: 100%;
}

nav .navbar .links {
    display: flex;
}

    nav .navbar .links li {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        list-style: none;
        padding: 0 11px;
    }

        nav .navbar .links li a {
            height: 100%;
            text-decoration: none;
            white-space: nowrap;
            color: #fff;
            /* font-size: 15px; */
            font-weight: 500;
        }

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
    transform: rotate(180deg);
}

nav .navbar .links li .arrow {
    /* background: red; */
    height: 100%;
    width: 22px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
    color: #fff;
    transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
    position: absolute;
    top: 48px;
    left: 0;
    line-height: 35px;
    background: #c7380b;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
    display: block;
}

.links .sub-menu li:hover{
    background: #ffb199;
}

.links .sub-menu li:hover a{
    color: #000 !important;
  }
  .links .sub-menu .more li a{
    color: #fff !important;
  }
  .links .sub-menu .more li:hover a{
    color:#000 !important;
  }
.current{
    background-color: #fff;
}
.current a{
    color: #000;
}
.current a, .current .arrow{ 
    color: #000 !important;
    font-weight: bold !important;
}
.current .sub-menu li a{ 
    color: #FFF !important;
    font-weight: bold !important;
}
.navbar .links li .sub-menu li {
    padding: 0 22px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar .links li .sub-menu a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.navbar .links li .sub-menu .more-arrow {
    line-height: 40px;
}

.navbar .links li .htmlCss-more-sub-menu {
    /* line-height: 40px; */
}

.navbar .links li .sub-menu .more-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
    display: block;
}

.navbar .search-box {
    display:none;
    position: relative;
    height: 40px;
    width: 40px;
}

    .navbar .search-box i {
        position: absolute;
        height: 100%;
        width: 100%;
        line-height: 40px;
        text-align: center;
        font-size: 22px;
        color: #fff;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .navbar .search-box .input-box {
        position: absolute;
        right: calc(100% - 40px);
        top: 80px;
        height: 60px;
        width: 300px;
        background: #ff5722;
        border-radius: 6px;
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        z-index:10;
    }

.navbar.showInput .search-box .input-box {
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #ff5722;
}

.search-box .input-box::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: #ff5722;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
}

.search-box .input-box input {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
}

.navbar .nav-links .sidebar-logo {
    display: none;
}

.navbar .bx-menu {
    display: none;
}

@media (max-width:920px) {
    nav .navbar {
        max-width: 100%;
        padding: 0 25px;
    }

        nav .navbar .logo a {
            font-size: 27px;
        }

        nav .navbar .links li {
            padding: 0 10px;
            white-space: nowrap;
        }

            nav .navbar .links li a {
                font-size: 15px;
            }
}

@media (max-width:800px) {
    .navbar .search-box{
        display:unset;
    }
    .mobile_visible {
        display: none;
    }
    .navbar .logo {
        display: unset;
    }
    nav {
        /* position: relative; */
    }
    nav .navbar{
        justify-content:space-between;
    }

    .navbar .bx-menu {
        display: block;
    }

    nav .navbar .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 270px;
        width: 100%;
        background: #ff5722;
        line-height: 40px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sidebar-logo .logo-name {
        font-size: 25px;
        color: #fff;
    }

    .sidebar-logo i,
    .navbar .bx-menu {
        font-size: 25px;
        color: #fff;
    }

    nav .navbar .links {
        display: block;
        margin-top: 20px;
        padding-left:10px !important;
    }

        nav .navbar .links li .arrow {
            line-height: 40px;
        }

        nav .navbar .links li {
            display: block;
        }

            nav .navbar .links li .sub-menu {
                position: relative;
                top: 0;
                box-shadow: none;
                display: none;
            }

                nav .navbar .links li .sub-menu li {
                    border-bottom: none;
                }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
        position: relative;
        left: 0;
    }

        .navbar .links li .sub-menu .more-sub-menu li {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

    .links li:hover .htmlcss-arrow,
    .links li:hover .js-arrow {
        transform: rotate(0deg);
    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
    }

    .navbar .links li .sub-menu .more span {
        /* background: red; */
        display: flex;
        align-items: center;
        /* justify-content: space-between; */
    }

    .links li .sub-menu .more:hover .more-sub-menu {
        display: none;
    }

    nav .navbar .links li:hover .htmlCss-sub-menu,
    nav .navbar .links li:hover .js-sub-menu {
        display: none;
    }

    .navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show2 .links .more .more-sub-menu {
        display: block;
    }

    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }

    .navbar .nav-links.show2 .links .more-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width:370px) {
    .mobile_visible {
        display: none;
    }
    nav .navbar .nav-links {
        max-width: 100%;
    }
}





.latest-news p{
    color: #fff;
    position: absolute;
    height: 40px;
    background: #000;
    z-index: 11;
}
.latest-news marquee{
    font-family:Book Antiqua;
    height: 40px;
    color: #FFFFFF;
    font-size: 22px;
}
.Announcement marquee{
    min-height: 150px;
}







/* ************MD message start******************8 */

.MD {
    background: #ff5722;
}

.message_MD{
    color: #FFD600;
font-family: Outfit;
font-size: 19px;
font-style: normal;
font-weight: 600;
letter-spacing: 0.5px;
}

.MD_name{
    color: #FFF;
font-family: Outfit;
font-size: 19px;
font-style: normal;
font-weight: 600;
letter-spacing: 0.5px;
}

.the_message{
    color: #FFF;
text-align: justify;
font-family: Poppins;
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: 18PX;
width: 590px;
}

.MD .read_more {
    position: relative;
    background-color: transparent;
    border-radius: 25px;
    box-shadow: #fff 0px 4px 0px 0px;
    padding: 5px;
    background-repeat: no-repeat;
    box-sizing: border-box;
    width: 154px;
    color: #fff;
    border: 2px solid #fff;
    font-size: 20px;
    transition: all .1s ease-in-out;
    z-index: 5;
    overflow: hidden;
  }
  .MD .read_more a{
    color: #fff;
  }
  
  .MD .read_more::before {
    content: "";
    background-color: rgb(248, 50, 93);
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 300ms ease-in-out;
    display: inline-block;
  }
  
  .MD .read_more:hover::before {
    width: 100%;
  }





 /* Container style */
 .announcement-container iframe {
    border-radius: 33px;
box-shadow: 0px 4px 11px 4px rgba(0, 0, 0, 0.25);
}

/* Heading style */
.announcement-heading {
    background-color: #333;
    color: #fff;
    font-size: 18px;
    padding: 10px;
    text-align: center;
}

/* Scrolling text style */
.scrolling-text {
    position: absolute;
    width: 100%;
    animation: scroll-up 10s linear infinite;
}

.left_right_border{
    border-right: 2px solid #000;
    border-left: 2px solid #000;
}
.Announcement marquee p{
    color: #252525;
font-family: Outfit;
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 21px; /* 123.529% */
    border-bottom: 1px solid #FAE67B;
}

/* Keyframes for the scrolling animation */
@keyframes scroll-up {
    0% {
        top: 100%; /* Start position at the bottom of the container */
    }
    100% {
        top: -100%; /* End position above the container */
    }
}

.Announcement .heading {
    color: #000;
font-family: Outfit;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 27px; /* 112.5% */
}

.Announcement .left_right_border marquee p{
    padding-top: 10px;
    padding-bottom: 10px;
}





/* ----------------------important links Start--------------------------  */
.important_links .heading{
    color: #000;
/* text-align: justify; */
font-family: Outfit;
font-size: 23px;
font-style: normal;
font-weight: 500;
line-height: normal;
text-transform: uppercase;
}

.important_links .btn22{
    font-size: 1.1em;
 cursor: pointer;
 background-color: #fff;
 color: #A70477;
 border-left: 1px solid #A70477;
 border-right: 1px solid #A70477;
 border-radius: 5px;
 transition: all .4s;
    /* color: #A70477;
font-family: Roboto;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: -0.8px;
transition: 0.3s;
border-width: 1px;
  border-style: solid;
  border-image: 
    linear-gradient(
      to bottom, 
      red, 
      rgba(0, 0, 0, 0)
    ) 1 100%; */
}

.important_links .btn22:hover{
    border-radius: 5px;
    transform: translateY(-10px);
    box-shadow: 0 7px 0 -2px #f85959,
     0 15px 0 -4px #ff5722,
     0 16px 10px -3px #ff5722;
    /* scale: 1.2; */
}

.btn22:active {
    transition: all 0.2s;
    transform: translateY(-5px);
    box-shadow: 0 2px 0 -2px #f85959,
     0 8px 0 -4px #39a2db,
     0 12px 10px -3px #39a2db;
   }

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .important_links .links{
        flex-direction: column;
        text-align: left;
        /* justify-content: left !important; */
        /* padding-left: 40px; */
    }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}


















/* ----------------------Map section Start-------------------------- */
.map_heading{
    color: #000;
    /* text-align: justify; */
    font-family: Outfit;
    font-size: 23px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.map img{
    border-radius: 0px 23px;
    box-shadow: 0px 4px 13px 4px rgba(0, 0, 0, 0.25);
}
.line_number{
    color: #A70477;
text-align: justify;
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 1.28px;
}

.stations{
    color: #ff5722;
font-family: Outfit;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 22px;
text-align: justify;
}




/* ----------------------Footer Start-------------------------- */
.footer_upper{
    background: #EFF1F7;
}
.footer_upper a{
    color: #000 !important;
    text-decoration: none;
}
.footer_bottom{
    background: #ff5722;
    color: #fff;
}
footer{
    top: 100%;
    position: sticky;
    /* left: 0;
    right: 0; */
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    footer .footer_upper, footer .footer_bottom{
        flex-direction: column;
        text-align: center;
    }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}





.login_container {
    /* max-width: 350px; */
    background: #F8F9FD;
    background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(244, 247, 251) 100%);
    border-radius: 20px;
    padding: 25px 35px;
    border: 5px solid rgb(255, 255, 255);
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 30px 30px -20px;
    /* margin: 20px; */
  }
  
  .heading {
    padding-top: 5px;
    text-align: center;
    font-weight: 900;
    font-size: 30px;
    color: rgb(16, 137, 211);
  }
  
  /* .form {
    margin-top: 20px;
  } */
  
  .form .input {
    width: 100%;
    background: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    margin-top: 10px;
    box-shadow: #cff0ff 0px 10px 10px -5px;
    border-inline: 2px solid lightgray;
  }
  
  .form .input::-moz-placeholder {
    color: rgb(170, 170, 170);
  }
  
  .form .input::placeholder {
    color: rgb(170, 170, 170);
  }
  
  .form .input:focus {
    outline: none;
    border-inline: 2px solid #12B1D1;
  }
  
  .form .forgot-password {
    display: block;
    /* margin-top: 10px; */
    margin-left: 10px;
  }
  
  .form .forgot-password a {
    font-size: 11px;
    color: #0099ff;
    text-decoration: none;
  }
  
  .form .login-button {
    display: block;
    width: 30%;
    font-weight: bold;
    background: linear-gradient(45deg, rgb(16, 137, 211) 0%, rgb(18, 177, 209) 100%);
    color: white;
    padding-block: 10px;
    margin: 10px auto;
    border-radius: 20px;
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 20px 10px -15px;
    border: none;
    transition: all 0.2s ease-in-out;
  }
  
  .form .login-button:hover {
    transform: scale(1.03);
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 23px 10px -20px;
  }
  
  .form .login-button:active {
    transform: scale(0.95);
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 15px 10px -10px;
  }



.inner_page .sidebar{
    background-color: #ffb199;
    border-radius: 0 15px 15px 0;
}

.sidebar .btn-toggle::before {
    width: 1.25em;
    line-height: 0;
    /* content: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e); */
    transition: transform .35s ease;
    transform-origin: 0.5em 50%;
}
.sidebar .btn-toggle::before:hover {
    color: #fff;
}

.b-example-divider {
    flex-shrink: 0;
    width: 1.5rem;
    height: 100vh;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
  }
  
  .bi {
    vertical-align: -.125em;
    pointer-events: none;
    fill: currentColor;
  }
  
  .dropdown-toggle { outline: 0; }
  
  .nav-flush .nav-link {
    border-radius: 0;
  }
  
  .btn-toggle {
    display: inline-flex;
    align-items: center;
    padding: .25rem .5rem;
    font-weight: 400;
    color: rgba(0, 0, 0, .65);
    background-color: transparent;
    border: 0;
  }
  .btn-toggle:hover,
  .btn-toggle:focus {
    color: #fff !important;
    background-color: #ff5722;
  }
  
  .btn-toggle::before {
    width: 1.25em;
    line-height: 0;
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
    transition: transform .35s ease;
    transform-origin: .5em 50%;
  }
  
  .btn-toggle[aria-expanded="true"] {
    color: rgba(0, 0, 0, .85);
  }
  .btn-toggle[aria-expanded="true"]::before {
    transform: rotate(90deg);
  }
  
  .btn-toggle-nav a {
    display: inline-flex;
    padding: .1875rem .5rem;
    margin-top: .125rem;
    margin-left: 1.25rem;
    text-decoration: none;
  }
  .btn-toggle-nav a:hover,
  .btn-toggle-nav a:focus {
    background-color: #6da7e0;
  }
  
  .scrollarea {
    overflow-y: auto;
  }
  
  .fw-semibold { font-weight: 600; }
  .lh-tight { line-height: 1.25; }
  


  .page-updated-date{
    float: right;
    font-weight: bold;
  }
  .left_right_border{ 
    overflow:hidden;  
    height:100%;
  }
  .left_right_border marquee{
    height:100%;
  }

  footer .footer_upper a{
    padding-left: 10px;
    padding-right: 5px;
  }
  footer .footer_upper a{
    padding:5px;
    margin:0 5px;
    transition:0.2s;
  }

footer .footer_upper a:hover{
  background: #b5c7ff;
  border-radius:5px;

}

.inner_page p{
    text-align: justify;
}
#ExampleCaptcha_CaptchaDiv{
  display: flex;
  width: 100% !important;
  justify-content: center;
}
#ExampleCaptcha_SoundLink{
display:none;
}
.captcha_start{
    flex-direction: column;
}

.search {
    display: inline-block;
    position: relative;
  }
  
  .search input[type="text"] {
    width: 200px;
    padding: 5px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .search button[type="submit"] {
    background-color: #ff9270;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    right: 0;
    transition: .9s ease;
  }
  
  .search button[type="submit"]:hover {
    transform: scale(1.1);
    color: rgb(255, 255, 255);
    background-color: blue;
  }
  .google_font{
    font-size: 80%;
  }
  