/*------------------------------------------------------ ทุกหน้า ------------------------------------------------------------------*/

body {
  background: white;
 }
 *{
  margin: 0;
  padding: 0;
  user-select: none;
  box-sizing: border-box;
  font-family: "Prompt", sans-serif;
}

button {
    font-size: 15px;
    padding: 2px;
    border: 0;
    border-radius: 5px;
    border-color: whitesmoke;
    box-shadow: 0 1px 5px red;
}
button:hover{
    background: palevioletred;
}

i:hover{
    animation: shake 0.5s;
}


/*------------------------------------------------------Map----------------------------------------------------------------- */
#map {
    z-index: 3;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
#bordermap #map {
    position: static;
    width: 100%;
    height: 800px;
    border-radius: 10px;
    top: 120px;
}

/*--------------------- รูปขยับเมื่อ Mouse เลื่อนผ่าน----------------------------- */
.navigation img:hover {
    animation: shake 0.5s;
  }
.updatebox img:hover {
    animation: shake 0.5s;
}
  /* animation สำหรับการเขย่า นำไปใส่ได้หมด */
  @keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
  }


/*------------------------------------------------------ ปรับหน้าอัตโนมัติ ------------------------------------------------------------------*/
/*------------------------------------------------------ CSS Grid ------------------------------------------------------------------*/
:root {
--main-radius:1px;
--main-padding:5px;
}

.container{
display: grid;
height: 100vh;
grid-template-columns: 0.5fr 1fr;
grid-template-rows: 0.1fr 5fr 0.1fr  ;
grid-template-areas: 
"menu nav"
"menu main"
"menu footer";
grid-gap: 0.1 rem

}

nav{
background: #333;
grid-area: nav;
border-radius: var(--main-radius);
padding-top: var(--main-padding);
text-align: center;
padding-top: 10px;
font-size: 30px;
color: white;

}
main{
background: #333;
grid-area: main;
border-radius: var(--main-radius);
padding-top: var(--main-padding);

}

footer{
background: #333;
grid-area: footer;
border-radius: var(--main-radius);
padding-top: var(--main-padding);
}

#menubar{
background: #333;
grid-area: menu;
border-radius: var(--main-radius);
padding-top: var(--main-padding);
display: flex;
padding-top: 15px;
}

@media only screen and (max-width:550px){
.container{
grid-template-columns: 0.5fr 1fr;
grid-template-rows: 0.4fr 4fr 0.4fr;
grid-template-areas: 
"menu nav"
"menu main"
"menu footer";
grid-gap: 0.1 rem
}
}

/*------------------------------------------------------ ปรับตามหน้าจอต่างๆ ------------------------------------------------------------------*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) {
/* Styles */
}

/* Smartphones (landscape) ----------- */
@media only screen 
and (min-width : 321px) {
/* Styles */
}

/* Smartphones (portrait) ----------- */
@media only screen 
and (max-width : 320px) {
/* Styles */
}

/* iPads (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
/* Styles */
}

/* iPads (landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
/* Styles */
}

/* iPads (portrait) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
/* Styles */
}

/* Desktops and laptops ----------- */
@media only screen 
and (min-width : 1224px) {

}

/* Large screens ----------- */
@media only screen 
and (min-width : 1824px) {
/* Styles */
}

/* iPhone 4 ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
/* Styles */
}
/*###Desktops, big landscape tablets and laptops(Large, Extra large)####*/
@media screen and (min-width: 1024px){
  /*Style*/
  }
  
  /*###Tablet(medium)###*/
  @media screen and (min-width : 768px) and (max-width : 1023px){
  /*Style*/
  }
  
  /*### Smartphones (portrait and landscape)(small)### */
  @media screen and (min-width : 0px) and (max-width : 767px){
  /*Style*/
  }


/*----------------------------------------------- Menu bar ------------------------------------------------------*/
.navigation
{
    position: absolute;
    width:  70px;
    height: 430px;
    background: #fff;
    border-radius: 35px;
    box-shadow: 0 1px 10px whitesmoke;
    left: 20px;
}
.navigation ul
{
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.navigation ul li
{
    position: relative;
    list-style: none;
    width: 70px;
    height: 70px;
    z-index: 2;
}
.navigation ul li a
{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    color: #333;
    font-weight:  500;
}
.navigation ul li a .icon
{
    position: relative;
    display: block;
    line-height: 75px;
    text-align: center;
    transition: 0.5s;
}

.navigation ul li.active a .icon
{
    color: #fff;
}
.navigation ul li a .icon i
{
    font-size: 24px;
}

.navigation ul li a .title
{
    position: absolute;
    top: 50%;
    left: 110px;
    background: #fff;
    transform: translateY(-50%);
    padding: 5px 10px;
    border-radius: 6px;
    transition: 0.5s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 1);
    opacity: 0;
    visibility: hidden;
}
.navigation ul li:hover a .title
{
    opacity: 1;
    visibility: visible;
    transform: translateX(-25px) translateY(-50%);
    font-family: "Prompt", sans-serif;
}
.navigation ul li:hover a .title::before
{
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    left: -8px;
    top: 46%;
    transform: rotate(45deg) translateY(-50%);
    border-radius: 2px;
}
.navigation ul .indicator
{
    position: absolute;
    left: 0;
    width: 70px;
    height: 70px;
    transition: 0.5s;
    z-index: 1;
}
.navigation ul li a img .indicator
{
    position: absolute;
    left: 0;
    width: 70px;
    height: 70px;
    transition: 0.5s;
    z-index: 3;
}

.navigation ul .indicator::before
{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 50px;
    height: 50px;
    background: #333;
    border-radius: 50%;
    transition: 0.5s;
}

/*-------------------------- จำนวนเมนู ----------------------------*/
.navigation ul li:nth-child(1).active ~ .indicator
{
transform: translateY(calc(70px * 0));
}
.navigation ul li:nth-child(2).active ~ .indicator
{
transform: translateY(calc(65px * 1));
}
.navigation ul li:nth-child(3).active ~ .indicator
{
transform: translateY(calc(65px * 2));
}
.navigation ul li:nth-child(4).active ~ .indicator
{
transform: translateY(calc(66px * 3));
}
.navigation ul li:nth-child(5).active ~ .indicator
{
transform: translateY(calc(68px * 4));
}
.navigation ul li:nth-child(6).active ~ .indicator
{
transform: translateY(calc(68px * 5));
}


.navigation ul li:nth-child(1).active ~ .indicator::before
{
background: #f53b57;
}
.navigation ul li:nth-child(2).active ~ .indicator::before
{
background: #3c40c6;
}
.navigation ul li:nth-child(3).active ~ .indicator::before
{
background: #05c46b;
}
.navigation ul li:nth-child(4).active ~ .indicator::before
{
background: #0fbcf9;
}
.navigation ul li:nth-child(5).active ~ .indicator::before
{
background: #ffa801;
}
.navigation ul li:nth-child(6).active ~ .indicator::before
{
background: pink;
}

/* ------------------------------หน้า index.php-------------------------------------- */
.loginbox{
    margin: auto;
    margin-top: 50px;
    padding-top: 10px;
    padding-left: 10px;
    background: white;
    font-size: 30px;
    text-align: center;
    width: 100%;
    height: 450px;
    border-radius: 10px;
    box-shadow: 0 1px 10px pink;
}

.loginlabel{
    font-size: 20px;
}

.logininput{
    width: 250px;
    border-radius: 5px;
    margin: 5px;
    padding: 5px;
    border: 0;
    font-size: 20px;
    text-align: center;
    box-shadow: 0 1px 5px #333;
}
.logininput:hover{
    box-shadow: 0 1px 5px red;
}

.loginbutton {
    font-size: 20px;
    padding: 2px;
    border: 0;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border-color: whitesmoke;
    box-shadow: 0 1px 10px pink;
}
.loginbutton:hover{
    box-shadow: 0 1px 10px red;
}


/* ------------------------------หน้า Home.php-------------------------------------- */
.HomeBox{
    margin: auto;
    margin-top: 50px;
    padding-top: 10px;
    padding-left: 10px;
    background: white;
    font-size: 40px;
    text-align: center;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 1px 10px pink;
}
.HomeBoxBangkok{
    margin-top: 50px;
    background: white;
    font-size: 40px;
    text-align: center;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 1px 10px pink;
}
.HomeBoxAustralia{
    margin-top: 50px;
    background: white;
    font-size: 40px;
    text-align: center;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 1px 10px pink;
}
.HomeBoxBangkok .HomeBoxBangkokin{
	margin: 10px;
    border-radius: 10px;
    text-align: center;
    font-size: 28px;
}
.HomeBoxAustralia .HomeBoxAustraliain{
	margin: 10px;
    border-radius: 10px;
    text-align: center;
    font-size: 28px;
}

 /* ------------------------------หน้า bubbletea.php-------------------------------------- */
 /* ------------ช่อง Search-------------------- */
 .textinput{
    width: 100px;
    border-radius: 5px;
    padding: 5px;
    border: 0;
    font-size: 20px;
    text-align: center;
}
 /* ------------กล่อง Show ข้อมูล-------------------- */
.resultbox .box1{
    margin: auto;
    padding: 20px;
    background: whitesmoke;
    font-size: 25px;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 140px;
    border-radius: 10px;
    box-shadow: 0 1px 10px pink;
}
.resultbox .box1:hover{
    box-shadow: 0 1px 20px yellow;
    animation: shake 0.5s;
}

.resultbox .box2{
    margin: auto;
    padding-top: 10px;
    padding-left: 10px;
    background: whitesmoke;
    font-size: 30px;
    text-align: center;
    width: 100%;
    height: 160px;
    border-radius: 10px;
    box-shadow: 0 1px 10px pink;
}
.resultbox .box2:hover{
    box-shadow: 0 1px 20px yellow;
    animation: shake 0.5s;
}
.resultbox .box2 .boxin{
    width: 100%;
	background: whitesmoke;
    border-radius: 10px;
    text-align: center;
    font-size: 30px;
}

.resultbox .box3{
    margin: auto;
    padding-top: 10px;
    padding-left: 10px;
    background: whitesmoke;
    font-size: 30px;
    text-align: center;
    width: 100%;
    height: 160px;
    border-radius: 10px;
    box-shadow: 0 1px 10px pink;
}

.resultbox .box3 .boxin{
    width: 100%;
	background: whitesmoke;
    border-radius: 10px;
    text-align: center;
    font-size: 30px;
}

a{
    text-decoration: none;  
    color: black;
}
.resultbox .box3:hover{
    box-shadow: 0 1px 20px yellow;
    animation: shake 0.5s;
}


/* ------------------------------หน้า Insertdata.php-------------------------------------- */
.insertbox{
    margin: auto;
    padding-top: 10px;
    padding-left: 10px;
    background: #333;
    font-size: 30px;
    text-align: center;
    width: 300px;
    height: 500px;
    border-radius: 10px;
    box-shadow: 0 1px 10px pink;
}
.insertbox label{
    color: #fff;
}
.insertbox .insertboxin{
    float: left;
    width: 120px;
	height: 80px;
	margin: 10px;
    border-radius: 10px;
    text-align: center;
    font-size: 30px;
}

.insertinput{
    width: 100px;
    border-radius: 5px;
    margin: 5px;
    padding: 5px;
    border: 0;
    font-size: 20px;
    text-align: center;
}

/* ------------------------------หน้า exchange.php-------------------------------------- */


.exchangeboxbody{
    width:100%; 
    height: 300px;
    background-color:white;
    text-align:center;
    margin:0px;
    padding:0px;
    font-family: "Prompt", sans-serif;
    font-size: 20px;
    box-shadow: 0 1px 10px yellow;
    border-radius: 10px;    
}
/* เปลี่ยน Ration */
.exchangeboxbody #V1tofrom{
    text-align:center;
    font-size: 20px;
    margin-top: 10px;
    font-family: "Prompt", sans-serif!important;
    border-radius: 10px;
}
/* เปลี่ยน input text */
.exchangeboxbody #V1amount{
    box-shadow: 0 1px 5px #333;
    text-align:center;
    font-size: 20px;
    margin-top: 10px;
    font-family: "Prompt", sans-serif!important;
    border-radius: 10px;
    height: 30px;
    border: 0;
}

/* เปลี่ยน input textarea */
.exchangeboxbody textarea{
    box-shadow: 0 1px 5px #333;
    margin-top: 10px;
    border-radius: 10px;
    border: 0;
    height: 30px;
    text-align:center;
    font-family: "Prompt", sans-serif!important;
    font-size: 20px;
}
/* เปลี่ยน input select */
.exchangeboxbody select{
    box-shadow: 0 1px 5px #333;
    text-align:center;
    border: 0;
    border-radius: 10px;
    width:100%;
    height: 30px;
    margin-top: 10px!important;
}
.exchangeboxbody font{
    font-family: "Prompt", sans-serif!important;
    font-size: 20px!important;  
    font-weight: 100; 
}

.exchangeboxhead{
    background-color:white;
    width:100%;
    height: 30px;
    margin:0px;
    padding:0px;
    text-align:center;
    border-radius: 10px;
}


/* ------------------------------หน้า Updateubbbletea & updateicecream.php-------------------------------------- */
.updatebox{
    margin: auto;
    padding-top: 20px;
    padding-left: 10px;
    text-align: center;
    width: 300px;
    height: 200px;
    border-radius: 10px;
}
.updatebox button{
    padding: 10px;
}
/* ------------------------------หน้า Editbubbletea.php-------------------------------------- */
.editbox{
    margin: auto;
    text-align: center;
    width: 100%;
    height: 200px;
    border-radius: 10px;
}
.editbox a{
    font-size: 15px;
    padding: 2px;
    border: 0;
    border-radius: 5px;
    border-color: whitesmoke;
    box-shadow: 0 1px 5px red;
    background: white;
}
.editbox a:hover{
    background: palevioletred;
}
.editinput{
    width: 100%;
    border-radius: 5px;
    border: 0;
    font-size: 20px;
    text-align: center;
}



/* ------------------------------หน้า fruit.php-------------------------------------- */

.fruitboxin{
    margin: auto;
    font-size: 30px;
    text-align: center;
    border-radius: 10px;
}
.fruitupload{
    margin: auto;
    font-size: 20px;
    text-align: center;
    border-radius: 10px;
}
.insertinput{
    width: 100px;
    border-radius: 5px;
    margin: 5px;
    padding: 5px;
    border: 0;
    font-size: 20px;
    text-align: center;
}
.imgfruit{
    background: #05c46b;
    padding: 5px;
    border-radius: 10px;
}
.imgfruit:hover{
    background: #FB9F63;
}

/* ------------------------------ตาราง-------------------------------------- */
table{
    text-align: center;
}
table th{
    text-align: center;
    background: #A8B2A9;
    border-radius: 2px;
}
table td{
    text-align: center;
    background: white;
    padding: 10px;
}

/* addfruitModal */
.addfruitModal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .addfruitModal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
  }
  
  /* The Close Button */
  .addfruitModalclose {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .addfruitModalclose:hover,
  .addfruitModalclose:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

/* ------------------------------หน้า map.php-------------------------------------- */
.mapboxin{
    margin: auto;
    font-size: 30px;
    text-align: center;
    border-radius: 10px;
}
.mapupload{
    margin: auto;
    font-size: 20px;
    text-align: center;
    border-radius: 10px;
}
.insertmapinput{
    width: 100%;
    border-radius: 5px;
    margin: 5px;
    padding: 5px;
    border: 1;
    font-size: 20px;
    text-align: center;
    border-color: #333;
}
.insertmapinput:hover{
    box-shadow: 0 1px 10px red;
}
.imgmap{
    background: #05c46b;
    padding: 5px;
    border-radius: 10px;
}
.imgmap:hover{
    background: #FB9F63;
}

.addmapModal {
    display: none; 
    position: fixed; 
    z-index: 10; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
  }
  .addmapModal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%; 
  }
  .addmapModalclose {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  .addmapModalclose:hover,
  .addmapModalclose:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  /* ------------------------------หน้า Edit-data-search.php-------------------------------------- */
.editdata{
    background: wheat;
    padding: 5px;
    border-radius: 10px;
}
.editdata:hover{
    background: #FB9F63;
}
.backtologin{
    background:red;padding: 10px;border-radius: 5px;margin:5px;text-align: center;color: #fefefe;
}
.backtologin:hover{
    background:palevioletred;
}

 /* ------------------------------หน้า Fattogether.php-------------------------------------- */

.sumbox{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr ;
    grid-template-areas: 
    "sumbox1 sumbox2 sumbox3";
    grid-gap: 1 rem
    
    }
    
    .sumbox1{
    background: rgb(164, 219, 255);
    grid-area: sumbox1;
    border-radius: 10px;
    padding-top: 10px;
    text-align: center;
    padding-top: 10px;
    font-size: 20px;
    margin: 5px;

    }
    .sumbox2{
    background: rgb(236, 255, 208);
    grid-area: sumbox2;
    border-radius: 10px;
    padding-top: 10px;
    text-align: center;
    padding-top: 10px;
    font-size: 20px;
    margin: 5px;
    }
    
    .sumbox3{
    background: rgb(255, 208, 224);
    grid-area: sumbox3;
    border-radius: 10px;
    padding-top: 10px;
    text-align: center;
    padding-top: 10px;
    font-size: 20px;
    margin: 5px;
    }

    .addfatModal {
        display: none; 
        position: fixed; 
        z-index: 10; 
        left: 0;
        top: 0;
        width: 100%; 
        height: 100%; 
        overflow: auto; 
        background-color: rgb(0,0,0); 
        background-color: rgba(0,0,0,0.4); 
      }
      .addfatModal-content {
        background-color: #fefefe;
        margin: 15% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%; 
      }
      .addfatModalclose {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
      }
      .addfatModalclose:hover,
      .addfatModalclose:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
      }

      .fatboxin{
        margin: auto;
        font-size: 30px;
        text-align: center;
        border-radius: 10px;
    }
    .fatupload{
        margin: auto;
        font-size: 20px;
        text-align: center;
        border-radius: 10px;
    }
    .insertfatinput{
        width: 100%;
        border-radius: 5px;
        margin: 5px;
        padding: 5px;
        border: 1;
        font-size: 20px;
        text-align: center;
        border-color: #333;
    }
    .insertfatinput:hover{
        box-shadow: 0 1px 10px red;
    }

/* ------------------------------หน้า CostAUD.php-------------------------------------- */
#addcost{
    background-color:#7DFF33;
    box-shadow: 0 1px 1px;
    padding: 5px;
}
#addcost:hover{
    background-color:whitesmoke;
    box-shadow: 0 1px 1px;
}
#Editcost{
    background-color:#e32525;
    box-shadow: 0 1px 1px;
    padding: 5px;
}
#Editcost:hover{
    background-color:whitesmoke;
    box-shadow: 0 1px 1px;
}
#Backcost{
    background-color:#e32525;
    box-shadow: 0 1px 1px;
    padding: 5px;
    margin-top: 10px;
    margin-left: 10px;
    
}
#Backcost:hover{
    background-color:whitesmoke;
    box-shadow: 0 1px 1px;
}

.costaudboxin{
    margin: auto;
    font-size: 18px;
    text-align: center;
    border-radius: 10px;
}
.costaudupload{
    margin: auto;
    font-size: 20px;
    text-align: center;
    border-radius: 10px;
}
.insertcostinput{
    width: 100%;
    border-radius: 5px;
    margin: 5px;
    padding: 5px;
    border: 1;
    font-size: 12px;
    text-align: center;
    border-color: #333;
}
.insertcostinput:hover{
    box-shadow: 0 1px 10px red;
}
.insertdateinput{
    width: 100%;
    border-radius: 5px;
    margin: 5px;
    padding: 5px;
    border: 1;
    font-size: 12px;
    text-align: center;
    border-color: #333;
}
.insertdateinput:hover{
    box-shadow: 0 1px 10px red;
}

.addcostModal {
    display: none; 
    position: fixed; 
    z-index: 10; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
  }
  .addcostModal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 5px;
    width: 80%; 
  }
  .addcostModalclose {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  .addcostModalclose:hover,
  .addcostModalclose:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  .floating-button {
    position: fixed;
    bottom: 10px;
    left: 10px;
  }
  
  .floating-button button {
    padding: 12px;
    font-size: 12px;
    background-color: #ed5c8a;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .floating-button button:hover {
    background-color: #ed5c8a;
  }
  
    
