﻿*{
    box-sizing:border-box;
    padding:0;
    margin:0;
    list-style:none;
}
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    position:relative;
}
.dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

button {
    text-decoration: none;
}
button:hover,i:hover,a:hover{
    cursor:pointer;
}
    a:hover {
        color: #e76668;
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
    font-weight:700;
}
.d-flex{
    display:flex;
    justify-content:center;
    align-items:center;
    height:100%;
}
.m-auto{
    margin:auto;
}
.mt-10{
    margin-top:10px;
}
.d-block{
    display:block;
}
.dropdown-item {
    color: #1B4F72!important;
}
/*==========================================================================
Chrome Frame prompt
========================================================================== */
.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;
    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #e74c3c;
        -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
        animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #f9c922;
        -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
        animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg); /* IE 9 */
        transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
    }

    100% {
        -webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg); /* IE 9 */
        transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg); /* IE 9 */
        transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
    }

    100% {
        -webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg); /* IE 9 */
        transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
    }
}







/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

    .ir:before {
        content: "";
        display: block;
        width: 0;
        height: 150%;
    }

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

    /*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

    .visuallyhidden.focusable:active,
    .visuallyhidden.focusable:focus {
        clip: auto;
        height: auto;
        margin: 0;
        overflow: visible;
        position: static;
        width: auto;
    }

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}


.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}

/* ----------------------------------------   Login Screen ------------------------------------------ */
#dropdownMenuButton {
    background: transparent;
    border: none;
    outline: none;
    width: 215px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
}
    .dropdown-toggle::after{
        margin-left:10px;
    }
    #dropdownMenuButton:active, #dropdownMenuButton:focus {
        border: 0;
        outline: 0;
        box-shadow: none;
    }
.login_screen {
    width: 100%;
    height: 100vh;
    background: url("../images/GM_Banner.jpg") top center no-repeat;
    /* background: url("../images/main-banner.jpg") top center no-repeat;*/
    background-size: cover;
    position: relative;
}
.login_screen:before {
    content: "";
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
.login_logo{
    width:200px;
}
.user_byname{
    margin-left:10px;
}
.login_logo img {
    width: 100%;
}
.login-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    padding: 40px;
    transform: translate(-50%, -50%);
    background: rgba(51,51,51,1);
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0,0,0,.6);
    border-radius: 10px;
}
.signin-logo{
    width:150px;
}
    .signin-logo img {
        width: 100%;
        margin: 20px 0;
    }
    .login-box h2 {
        margin: 0 0 30px;
        padding: 0;
        color: #fff;
        text-align: center;
    }

    .login-box .user-box {
        position: relative;
    }

        .login-box .user-box input {
            width: 100%;
            padding: 10px 0;
            font-size: 16px;
            color: #fff;
            margin-bottom: 30px;
            border: none;
            border-bottom: 1px solid #fff;
            outline: none;
            background: transparent;
        }

        .login-box .user-box label {
            position: absolute;
            top: 0;
            left: 0;
            padding: 10px 0;
            font-size: 16px;
            color: #fff;
            pointer-events: none;
            transition: .5s;
        }

        .login-box .user-box input:focus ~ label,
        .login-box .user-box input:valid ~ label {
            top: -20px;
            left: 0;
            color: #03e9f4;
            font-size: 14px;
        }

.login-box form .login_submit {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #03e9f4;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    margin-top: 25px;
    letter-spacing: 4px;
    border: 1px solid #03e9f4;
    background:transparent;

}
/* Change the white to any color */
/*input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    background: #000 !important;
}
input:-webkit-autofill {
    -webkit-text-fill-color: #000 !important;
}*/
.login-box .login_submit:hover {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 5px;
    color: #fff;
}

    .login-box a span {
        position: absolute;
        display: block;
    }

.div_f_pwd,.login-box .forgot_pwd, .login-box .forgot_pwd a {
    color: #f2f2f2;
    text-align: left;
}
    .login-box .forgot_pwd a:hover {
        color: #de9c00;
        text-decoration:underline;
        border: none;
    }
    .login-box form{
        text-align:center;
    }
        .login-box form .signin-logo {
            text-align: center;
            width: 150px;
            display: inline-block;
        }
            .login-box form .signin-logo img {
                text-align: center;
                width:100%;
                display: inline-block;
            }
        .login-box form span{
            text-align:left;
        }
#form1 input:-webkit-autofill,
#form1 input:-webkit-autofill:hover,
#form1 input:-webkit-autofill:focus,
#form1 textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
#form1 textarea:-webkit-autofill:focus,
#form1 select:-webkit-autofill,
#form1 select:-webkit-autofill:hover,
#form1 select:-webkit-autofill:focus {
    -webkit-text-fill-color: white;
    -webkit-box-shadow: 0 0 0px 1000px #333333 inset;
    transition: background-color 5000s ease-in-out 0s;
}
        /* ----------------------------------------   DashBoard ------------------------------------------ */
.nav-top_main{
    display:flex;
    justify-content:space-between;
     align-items:center;
}
#main_wrapper {
    width: 100%;
    min-height: 100vh;
    height: 100%;
    background: url("../images/bg.jpg") top center no-repeat;
    background-size: cover;
    position: relative;
    padding-bottom:30px;
}
    #main_wrapper:before {
        content: "";
        background: rgba(0, 0, 0, 0.5);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        z-index:-1;
    }
        .dash_right {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
.dash_search, .user_details{
    margin:10px 15px;
}
.not_bell {
    margin: 16px 15px 0 15px;
}
.not_power {
    margin: 10px 15px 0 15px;
}
.not_power i{
    font-size:25px;
}
    .not_power i:hover {
        color: #ae0000;

    }
.dropdown-toggle::after {
    margin:14px 0 0 14px!important;
}
    .search_ab {
    border: 1px solid #fff;
    height: 35px;
    padding: 5px;
    border-radius: 6px;
}
    .search_ab i{
        color:#fff;
    }
    .dash_logo {
        width: 80px;
        float: left;
        margin: 10px 0;
    }
.dash_logo img{
    width:100%;
}
.user_details {
    display: flex;
    align-items:center;
    justify-content:space-between;
}
/*.user_details .user_pic {
    width: 40px;
}*/
    .user_details .user_pic i {
      font-size:30px;
      color:#fff;
    }
    .user_details .user_name{
        margin-top:10px;
    }
.bi-person-circle {
    font-size: 25px;
    color: #17a05d;
}
.dash_search input {
    border: 1px solid #fff;
    background: transparent;
    outline: 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    height: 35px;
    width: 250px;
    border-radius: 5px;
    padding: 5px 20px;
    font-size: 14px;
    color: #fff;
}
.dash_not i {
    font-size: 20px;
    color: #fff;
    transition:all ease-in-out 0.3s;
}

.not_bell i:hover {
    color: #17a05d;
}
.user_details .user_name {
    margin-left: 15px;
    font-weight: 600;
    color: #fff;
}
.nav_section {
    background: rgba(0, 0, 0, 0.5);
}
body {
    margin: 0;
    padding: 0;
    background: #4097FF;
}

/*.search-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #2F3640;
    height: 40px;
    border-radius: 40px;
}

.search-btn {
    color: #4097FF;
    float: right;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2F3640;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.4s;
}

.search-txt {
    border: none;
    background: none;
    outline: none;
    float: left;
    padding: 0;
    color: #fff;
    font-size: 16px;
    transition: 0.4s;
    line-height: 40px;
    width: 0px;
}

.search-box:hover > .search-txt {
    width: 240px;
    padding: 0 6px;
}

.search-box:hover > .search-btn {
    background: white;
}*/
/* ----------------------------------------   Index ------------------------------------------ */
.form_wrapper h1 {
    text-align: center;
    color: #fff;
    color: #17a05d;
}
/* Style the tab */
.tab {
    overflow: hidden;
    background-color: transparent;
    display: flex;
    justify-content: center;
    margin: 50px 0 20px 0;
}
.tab_space{
    margin-bottom:30px;
}
/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: transparent;
    color: #fff;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    border: 1px solid #fff;
    border-radius: 5px;
    margin: 0 20px;
}

        /* Change background color of buttons on hover */
        .tab button:hover {
            border: 1px solid #28afea;
            color: #28afea;
        }

        /* Create an active/current tablink class */
    .tab button.active, .tab button:active, .tab button:focus {
        border: 1px solid #f9d225;
        color: #f9d225;
    }

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border:1px solid #f9d225;
  /*  border-top: none;*/
}
.top_link{
    margin-top:50px
}
    .top_link .links{
        margin-bottom:20px;
    }
    .top_link .links a {
        width: 100%;
        text-align: center;
        border: 1px solid #fff;
        border-radius: 5px;
        padding: 10px;
        color: #f7c720;
        background: transparent;
        display: inherit;
    }
        .top_link .links a:hover {
            background: #f7c720;
            color:#000;
        }
        .top_link .links a i {
            margin-right: 10px
        }
.card_login {
    margin-top:100px;
}
.login_card .login_card_pic {
    width: 100%;
    text-align: center;
    display: inline-block;
    border-radius:0 0 30px 30px;
}
    .login_card .login_card_pic img {
        width: 100%;
        text-align: center;
        display: inline-block;
        border-radius: 0 0 30px 30px;
    }
.card_login .col-md-4{
    text-align:center;
    width:100%;
}
.login_card {
    width: 90%;
    height: auto;
    border: 1px solid #fff;
    border-radius: 5px;
    /*padding: 20px;*/
    text-align: center;
    display:inline-block;
    background: #fff;
    margin-bottom: 20px;
}
        .login_card_det h4{
            font-weight:700;
            display:flex;
            justify-content:center;
            align-items:center;
            height:70px;
           /* padding:20px;*/
        }
.login_card_det .span_links, .login_card_det h4 {
    margin-top: 20px;
    padding: 20px;
}
            .login_card_det .span_links{
                display:flex;
                justify-content:center;
                align-items:center;
                height:40px;
            }
.login_card_det span a {
    color: #420031;
    font-size: 13px;
}
.login_card_det div {
    text-align: center;
    display: inline-block;
    width: 100%;
    margin: 20px 0;
}
    .login_card_det div a {
        width: 200px;
        background:#007acc;
        color: #fff;
        display: inherit;
        text-align: center;
        padding: 10px;
        border-radius: 5px;
    }
        .login_card_det div a:hover {
            background:#17a05d;
        }
        .dash_search input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
            color: #fff;
            opacity: 1; /* Firefox */
        }

.dash_search input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color:#fff;
}

.dash_search input::-ms-input-placeholder { /* Microsoft Edge */
    color: #fff;
}
input.empty {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
}
.dash_search .form-control:focus {
    background: transparent !important;
    border-color: #fff !important;
    outline: 0 !important;
    box-shadow: none !important;
    color:#fff!important;
    font-size:15px!important;
}
/* ------------------------------------ Dashboard ---------------------------------------------------- */

.add_btns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /*margin-top: 30px;*/
}
.btn-flex{
    display:flex;
    justify-content:space-between;
}
.add_btns .btn_top_admin {
    border: none;
    outline: 0;
    padding: 5px 10px;
    background: #17a05d;
    border-radius: 5px;
    border: 1px solid #17a05d;
    color: #fff;
    margin: 10px 20px;
    width: 150px;
}

.user_list_grid {
    margin-top: 30px;
}
    .user_grid{
        overflow:auto;
    }

    .user_list_grid h1 {
        text-align: center;
        color: #17a05d;
        font-weight: 600;
        /*  margin-bottom: 20px;*/
    }

    .user_list_grid table {
        width: 100%;
        border-radius: 5px;
    }

        .user_list_grid table tr th {
            color: #f9d225;
        }

        .user_list_grid table tr td {
            color: #fff;
        }

        .user_list_grid table tr th, .user_list_grid table tr td {
            border: 1px solid #17a05d;
            padding: 10px 20px;
            text-align: center;
        }

            .user_list_grid table tr td .btn_permission {
                border: none;
                outline: 0;
                padding: 5px 20px;
                background: #0089d2;
                border-radius: 5px;
                color: #fff;
                text-decoration:none;
            }

                .user_list_grid table tr td .btn_permission:hover {
                    background: #17a05d;
                    text-decoration: none !important;
                }

@media screen and (max-width:600px) {
    .add_btns {
        flex-direction: column;
    }

        .add_btns .btn_top_admin {
            width: 270px
        }
}

/* ------------------------------------ Forgot password ---------------------------------------------------- */

.forgot_pwrd {
    border: 1px solid #17a05d;
    border-radius: 5px;
    padding: 3%;
    color: #fff;
    margin-top: 100px;
    width: 80%;
}

    .forgot_pwrd h1 {
        text-align: center;
        color: #17a05d;
        margin: 10px 0 30px 0;
    }

.btn_f_submit {
    height: 40px;
    border: none;
    background: #17a05d;
    outline: 0;
    display: block;
    width: 100%;
    padding-left: 20px;
    border-radius: 5px;
    color: #fff;
    margin-top: 10px;
}

    .btn_f_submit:hover {
        background: transparent;
        border: 1px solid #fff;
    }

.forgot_pwd p {
    color: #17a05d;
    margin: 10px 5px 0 5px;
}
.pwd_eye {
    border: 1px solid #fff;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color:#fff;
}
#password-field {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.add_p_btns{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:row;
}
@media screen and (max-width:768px) {
    .forgot_pwd p {
        margin: 20px 5px 0 5px;
    }
    .add_p_btns {
        flex-direction: column;
    }
}
/* ------------------------------------ Change password ---------------------------------------------------- */
.btn_c_submit {
    height: 40px;
    width:400px;
    border: none;
    background: #17a05d;
    outline: 0;
    display: block;
    padding-left: 20px;
    border-radius: 5px;
    color: #fff;
    margin-top: 10px;
}
    .btn_c_submit:hover {
        background: transparent;
        border: 1px solid #fff;
    }
    .f_sub_div {
        display: flex;
        justify-content: center;
        align-items: center;
    }
/*.add_user_form .field-icon {
border:1px solid #fff;
border-radius:5px;
}*/
.view_pass{
display:flex;
justify-content:center;
align-items:center;
}
/* ------------------------------------ Add User Query ---------------------------------------------------- */
.add_user_head {
    color: #fff;
    text-align: center;
    font-family: 'Calibri',sans-serif;
}
.form_wrapper {
    background: rgba( 73, 73, 73, 0.4 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 24, 160, 94, 0.58 );
    margin-top: 20px;
    padding: 40px;
    position:relative;
}
.back_btn{
    position:absolute;
    top:20px;
    left:40px;
    z-index:99;
    transition:all ease-in-out 0.5s;
}
    .back_btn:hover{
        transform:scale(1.1)
    }
    .add_user_form {
        margin: 10px;
    }
.add_user_form label {
    display: block;
    color: #fff;
}
    .add_user_form input {
        height: 40px;
        border: 1px solid #fff;
        background: transparent;
        outline: 0;
        display: block;
        width: 90%;
        padding-left: 20px;
        border-radius: 5px;
        color: #f9d225;
    }
.btn_create_user {
    height: 45px;
    border: 1px solid #fff;
    background: transparent;
    outline: 0;
    display: block;
    width: 200px;
    border-radius: 5px;
    color: #f9d225;
    margin: 25px 10px;
    transition: all ease-in-out 0.5s;
    text-decoration: none !important;
}
    .btn_create_user:hover {
        background: #f9d225;
        color: #333;
        text-decoration:none!important;
    }
.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 25px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 0px;
        bottom: 3px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }
.add_user_permission{
    display:flex;
    justify-content:center;
   /* margin-bottom:20px;*/
}
.add_user_switch{
    display:flex;
    align-items:center;
}
    .add_user_switch label{
        margin-bottom:0;
    }
    .label_text {
        color: #fff;
        font-weight: 500;
        margin-right: 20px;
        font-size: 20px;
    }
.d_user_head {
    display: none;
}
.user_head{
    display:block;
}
/* ------------------------------------ Media Query ---------------------------------------------------- */
@media(max-width:768px) {
    .login_screen{
            background-position:top right;
        }
        .login-box {
            left: 117%;
            width: 300px;
            background: rgba(0,0,0,1);
        }
            .login-box form .signin-logo{
                width:100px;
            }

            #form1 input:-webkit-autofill,
            #form1 input:-webkit-autofill:hover,
            #form1 input:-webkit-autofill:focus,
            #form1 textarea:-webkit-autofill,
            textarea:-webkit-autofill:hover,
            #form1 textarea:-webkit-autofill:focus,
            #form1 select:-webkit-autofill,
            #form1 select:-webkit-autofill:hover,
            #form1 select:-webkit-autofill:focus {
                -webkit-text-fill-color: white;
                -webkit-box-shadow: 0 0 0px 1000px #000 inset;
                transition: background-color 5000s ease-in-out 0s;
            }
            .add_user_form input{
                width:100%;
            }
            .form_wrapper {
                padding:40px 0;
            }
    .tab{
        display:-webkit-box;
        overflow-x:scroll;
    }
    .tab button{
        width:215px;
    }
    .btn_create_user {
        width:200px;
    }

    }
@media(max-width:678px){
    .user_byname{
        display:none;
    }
    #dropdownMenuButton{
        justify-content:flex-end;
    }
    .btn_create_user{
        margin:5px 0;
    }
    .back_btn {
        top: 50px;
        left: 20px;
    }
    .d_user_head{
        display:block;
    }
    .user_head {
        display: none;
    }
}
