
body{
	/*background-color: #2f4050;*/
	background-color: #000000;
	padding: 75px 0 0 0;
}

html { height: 100%; }
html, body {
  height: 100vh;    
  /* old browsers */
  height: 100dvh;   
  /* preferred when supported */
  margin: 0;
  overflow-y: auto; 
  /* allow scrolling when needed */
}

/* html { height: 100%; } */
/* html, body {
  height: auto;        
  min-height: 100dvh;  
  margin: 0;
  overflow-y: auto;    
} */

/* html, body {
  height: 100dvh;
  overflow-y: auto; /* stops page scrolling entirely — only use if you want no page scroll */
} */

/* body {
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
} */

.activeB {
	color: #ffffff;
	background-color: #27AAE1;	
	border: 2px solid #e09952;
	border-radius: 20px;
	font-weight: bold;
}

.activeB {
	color: #ffffff;
	background-color: #27AAE1;	
	border: 2px solid #e09952;
	border-radius: 20px;
	font-weight: bold;
}

.card{
	background-color: #ffffff;
	/*min-height: 0;*/
	/*max-height: 400px;*/
	padding: 10px 10px 10px 10px;
	/*margin: 0 10px 0 10px;*/
	border-radius: 5px;
	border-width: 2px;
} 

.card-1{
	/*background-color: #ffffff;*/
	/*min-height: 0;*/
	/*height: 500px;*/
	padding: 2px 2px 2px 2px;
	margin: 0 2px 0 2px;
	border-radius: 5px;
	border-width: 2px;
}

.card-2{
	/*background-color: #ffffff;*/
	/*min-height: 0;*/
	/*height: 500px;*/
	padding: 1px 1px 1px 1px;
	/*margin: 2px 2px 2px 2px;*/
	border-radius: 5px;
	border-width: 2px;
	/*border: 2px solid white;*/
}

.card-3{
	background-color: #ffffff;
	/*min-height: 0;*/
	/*max-height: 400px;*/
	padding: 10px 10px 10px 10px;
	/*margin: 0 10px 0 10px;*/
	border-radius: 5px;
	border-width: 2px;
}

.card-img-top{
  max-width:100%;
  max-height:100%;
}

.chat-avatar-img.big-inline {
    width: 80vw;
    height: 80vw;
    max-width: 400px;
    max-height: 400px;
    object-fit: cover;
}

/* .chat-avatar-img.is-expanded {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    width: 80vw !important;
    height: 80vw !important;
    max-width: 480px !important;
    max-height: 480px !important;
    transform: translate(-50%, -50%) !important;
    object-fit: cover !important;
    border: 3px solid #00ff88 !important;
    border-radius: 8px !important;
    background: #000 !important;
    box-shadow: 0 20px 60px rgba(0,0,0,.8) !important;
    z-index: 9999 !important;
} */

/* .chat-avatar-img.is-expanded {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;

    width: 80vw !important;
    height: 80vw !important;
    max-width: 480px !important;
    max-height: 480px !important;

    
    transform: translate(-50%, -75%) !important;

    object-fit: cover !important;
    background: #000 !important;
    border: 3px solid #00ff88 !important;
    border-radius: 8px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,.8) !important;

    z-index: 999999 !important;
} */

/* shared expanded look */
/* .chat-avatar-img.is-expanded-start,
.chat-avatar-img.is-expanded {
    position: fixed !important;
    left: 50% !important;
    top: 50% !important;

    width: 80vw !important;
    height: 80vw !important;
    max-width: 480px !important;
    max-height: 480px !important;

    object-fit: cover !important;
    background: #000 !important;
    border: 3px solid #00ff88 !important;
    border-radius: 8px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,.8) !important;

    z-index: 999999 !important;


    transition: transform 0.18s ease-out;
}


.chat-avatar-img.is-expanded-start {
    transform: translate(-50%, -50%) !important;
}


.chat-avatar-img.is-expanded {
    transform: translate(-50%, -75%) !important;
} */

/* Final expanded shared state */
.chat-avatar-img.is-expanded,
.chat-avatar-img.is-expanded-start-me,
.chat-avatar-img.is-expanded-start-friend {
    position: fixed !important;
    left: 50% !important;
    top: 50% !important;

    width: 90vw !important;
    height: 90vw !important;
    max-width: 480px !important;
    max-height: 480px !important;

    object-fit: cover !important;
    background: #000 !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,.8) !important;

    z-index: 999999 !important;

    transition: transform 0.18s ease-out;
}

/* ========== SENDER (ME) OPEN ANIMATION ========== */
/* first frame = off to the left, blue border */
.chat-avatar-img.is-expanded-start-me {
    /* slightly left (-60%), slightly down (-40%) so it "rises in" from bottom-left */
    transform: translate(-60%, -40%) scale(1) !important;
    border: 3px solid #007bff !important; /* blue */
}

/* ========== FRIEND OPEN ANIMATION ========== */
/* first frame = off to the right, green border */
.chat-avatar-img.is-expanded-start-friend {
    /* slightly right (-40%), slightly down (-40%) so it "rises in" from bottom-right */
    transform: translate(-40%, -40%) scale(1) !important;
    border: 3px solid #00ff88 !important; /* green */
}

/* ========== FINAL RESTING STATE (both end up here) ========== */
.chat-avatar-img.is-expanded {
    /* centered higher (-75% on Y), keep same border color you had in the start state */
    transform: translate(-50%, -75%) scale(1) !important;
}

/* When ME ends expanded, keep blue border */
.chat-avatar-img.is-expanded.chat-avatar-img--me {
    border-left: 3px solid #007bff !important; /* blue */
}

/* When FRIEND ends expanded, keep green border */
.chat-avatar-img.is-expanded.chat-avatar-img--friend {
    border-right: 3px solid #00ff88 !important; /* green */
}



/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/ 
/*center-menu-icon*/

.bar1 div {  
  /*width: 60px;*/
  height: 4px;
  /*background-color: #333;*/
  background-color: transparent;
  margin: 4px auto 2px auto;
  /*opacity: 0.3;*/


}

.bara {  
  width: 40px;
  padding-left: 2px;
  padding-right: 2px;
  border-left: 2px solid grey;
  border-right: 2px solid grey;
  border-radius: 2px;
  opacity: 1; 
}

.barb {  
  width: 30px;
  border-left: 1px solid #27AAE1;
  border-right: 1px solid #27AAE1;
  border-radius: 2px;
  opacity: 0;  
}

.barc {  
  width: 25px;
  border-left: 1px solid #27AAE1;
  border-right: 1px solid #27AAE1;
  border-bottom: 1px solid #27AAE1;
  border-radius: 2px;
  opacity: 0;
}

.bar1:hover div {  
  /*width: 60px;*/
  height: 4px;
  background-color: blue;
  margin: 4px auto;
  opacity: 1;
  
}

.bar1:focus div {  
  /*width: 60px;*/
  height: 4px;
  background-color: blue;
  margin: 4px auto;
}

.button1 {
  background-color: #4CAF50; /* Green */  
  color: white;
  padding: 0px 0px;
  margin: 0px;
  text-align: center;
  text-decoration: none;
  display: inline-block;  
  border: 1px solid white;
  font-weight: bold; 
}

.button2 {
  background-color: #4CAF50; /* Green */  
  color: white;
  padding: 0px 0px;
  margin: 0px;
  text-align: center;
  text-decoration: none;
  display: inline-block;  
  border: 3px solid purple;
  border-radius: 10px;
  font-weight: bold; 
}

.button3 {
  background-color: #4CAF50; /* Green */  
  color: white;
  padding: 0px;
  margin: 0px;
  text-align: center;
  text-decoration: none;
  display: inline-block;  
  border: 1px solid white;
  font-weight: bold; 
}

.card-header-text {
  display: block;
  font-size: 1.5em;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

/*.containercarousel{
    padding:2px;
    border:dotted 1px;
    white-space:nowrap;
    overflow-x:auto;
}*/

/*.boxcarousel{
    width:94px;
    height:110px;
    background-color: red;
    margin:5px;
    display:inline-block;
}*/

.dkrounded2 {
	border-radius: 5px;
}

.dkrounded3 {
	border-radius: 10px;
}

.dkrounded4 {
	border-radius: 15px;
}

.dkrounded5 {
	border-radius: 20px;
}

.dkrounded6 {
	border-radius: 25px;
}

.dropbtn {
  background-color: transparent;
  cursor: pointer;
}

/*.dropbtn:hover, .dropbtn:focus {*/
  /*background-color: #2980B9;*/
/*}*/

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute; 
  margin-left: -65px; 
  background-color: #f1f1f1;
  border: 3px solid #27AAE1;
  border-radius: 5px;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 6px 6px;
  text-decoration: none;
  display: block;
 }

.dropdown a:hover {
	background-color: #ddd;
/*	border: 3px solid #27AAE1;
    border-radius: 3px;*/
}

.show {display: block;}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/

/*.col-sm-10{
	background-color: #ffffff;
}*/

.col-sm-8{
	/*background-color: #ffffff;*/
}


.container-1{
	/*background-color: #ffffff;*/
	/*min-height: 0;*/
	/*height: 500px;*/
	padding: 10px 10px 10px 10px;
	/*margin: 0 0px 0 0px;*/
	border-radius: 5px;
	border-width: 2px;
	border: 2px solid blue;
	margin: 2px 2px 2px 2px;
	display: block;
}

.container-2{
	background-color: blue;
	min-height: 50px;
	/*height: 500px;*/
	padding: 0px 0px 0px 0px;
	/*margin: 0 0px 0 0px;*/
	border-radius: 5px;
	border-width: 2px;
	border: 2px solid blue;
	margin: 2px 2px 2px 2px;
	display: block;
	
}

.container-3{

	display: inline-block;
	
}

.container-4{
	background-color: blue;
	min-height: 50px;
	/*height: 500px;*/
	padding: 2px 2px 2px 2px;
	/*margin: 0 0px 0 0px;*/
	border-radius: 5px;
	/*border-width: 2px;*/
	border: 2px solid blue;
	margin: 2px 2px 2px 2px;
	display: inline-block;
	
}

.container-5{
	background-color: blue;
	min-height: 50px;
	/*height: 500px;*/
	padding: 2px 2px 2px 2px;
	/*margin: 0 0px 0 0px;*/
	border-radius: 5px;
	/*border-width: 2px;*/
	border: 2px solid blue;
	margin: 2px 2px 2px 2px;
	display: inline-block;
	
}

/*bambora customcheckout*/
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/

.containerbambora {
    background-color: rgb(189, 222, 245);
    margin: 5px auto;

    width: 100%;

    border: none;
    border-radius: 4px;
}

#checkout-form {
    margin: 10px;
}

/* card images are added to card number */
#card-number {
    background-image: none;

    background-origin: content-box;
    background-position: calc(100% + 40px) center;
    background-repeat: no-repeat;
    background-size: contain;
}

/* feedback is displayed after tokenization */
#feedback {
    position: relative;
    left: 15px;
    display: inline-block;
    background-color: transparent;
    border: 0px solid rgba(200, 200, 200, 1);
    border-radius: 4px;
    transition: all 100ms ease-out;
    padding: 11px;
}

#feedback.error {
    color: red;
    border: 1px solid;
}

#feedback.success {
    color: seagreen;
    border: 1px solid;
}


/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/

.fa-carc{
	color: rgb(255, 51, 51);
}

.fa-storec{
	color: rgb(0, 0, 255);
}

.fa-userc{
	color: rgb(255, 255, 0);
}

.fa-book-openc{
	color: rgb(198, 83, 140);
}

.fa-people-carryc{
	color: rgb(51, 153, 102);
}

.fa-apple-altc{
	color: rgb(255, 214, 51);
}

.fa-awardc{
	color: rgb(204, 0, 153);
}

.fa-chairc{
	color: rgb(255, 0, 102);
}

.fa-homec{
	color: rgb(102, 153, 0);
}

.FieldInfo{
	color: rgb(251, 174, 44);
	font-family: Bitter,Georgia,"Times New Roman",Times,serif;
	font-size: 1.2em;
	font-color: blue;
}

#Footer {
	margin: 2px;
	padding: 0px 0px 0px 0px;
	background: transparent;
	border-radius: 5px;
	/*background-color: #211f22;*/
	text-align: center;	
	font-weight: 100px;
}

/*#Footer a{
	color: #9fblc2;*/
	/*font-weight: 100;*/
/*}
*/
/*#Footer active a{
	color: #ffffff;
	background-color: #27AAE1;
	font-weight: bold;
}*/

/*#Footer a:hover{
	color: #ffffff;
	background-color: #1ab394;
	font-weight: bold;
	display: block;
	border-radius: 5px;
}*/

.gal_col {
   padding-right: 2px;
   padding-left: 2px;
}

.gal_col_row {
    padding-left: 2px;
    padding-right: 2px;
}

.grid-container {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  /*grid-template-rows: auto;		  */
  grid-gap: 0px;
  /*background-color: yellow;*/
  padding: auto 1px auto 2px;
  
  /*border: 2px solid blue;*/

}

.grid-container > div {
  /*background-color: white;*/
  /*text-align: start;*/
  padding: 0px;
  text-align: center;
  margin: 2px;
  /*font-size: 12px;*/
}

	.grid-container.footer-grid {
		display: grid;
		grid-template-columns: 1fr repeat(4, auto) 1fr;
		align-items: center;
	}

	 
	.grid-container.footer-grid::before,
	.grid-container.footer-grid::after {
	 	content: "";
	}

	}
	.grid-containera {
	  display: grid;
	  grid-template-columns: 100px auto auto auto;
	  grid-template-rows: 40px 40px;		  
	  grid-gap: 3px;
	  background-color: yellow;
	  padding: 3px;
	  margin-bottom: 4px;
	  border: 2px solid blue;

	}

	.grid-container1 {
	  display: grid;
	  grid-template-columns: 100px auto auto auto;
	  grid-template-rows: 40px 40px;		  
	  grid-gap: 3px;
	  background-color: yellow;
	  padding: 3px;
	  margin-bottom: 4px;
	  border: 2px solid blue;

	}

	.grid-container1 > div {
	  background-color: white;
	  text-align: start;
	  padding: 2px 2px;

	  /*font-size: 30px;*/
	}

	.grid-container2 {
	  display: grid;
	  grid-template-columns: 100px auto 100px;
	  grid-template-rows: auto 20px;		  
	  grid-gap: 3px;
	  background-color: yellow;
	  padding: 3px;
	  margin-bottom: 4px;
	  border: 2px solid blue;

	}

h1 {
	  display: block;
	  font-size: 2em;
	  margin-top: 0.67em;
	  margin-bottom: 0.67em;
	  margin-left: 0;
	  margin-right: 0;
	  font-weight: bold;
	}

h2 {
  display: block;
  font-size: 1.5em;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

h3 {
	font-weight: bold;
	font-family: Bitter,GEorgia.Times,"Times New Roman",serif;
	font-size: 12px;
	color:  #6ec1e4;
	text-decoration: none;
}

/*h3 {
  display: block;
  font-size: 1.17em;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}*/

h4 {
  display: block;
  font-size: 1em;
  margin-top: 1.33em;
  margin-bottom: 1.33em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

/*h4 {	
	font-family: Bitter,GEorgia.Times,"Times New Roman",serif;
	font-size: 12px;
	color: #12bbad;	
}*/

h5{

 	font-weight: bold;
	font-family: Bitter,GEorgia.Times,'Rubik',serif;
	font-size: 16px;
	color: #6ec1e4;
	/*padding-bottom:10px;*/
	/*border-bottom: 7px solid #6ec1e4;*/
}

/*h5 {
  display: block;
  font-size: .83em;
  margin-top: 1.67em;
  margin-bottom: 1.67em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}*/

h6 {
	
	font-family: Georgia, Times, "Times New Roman", serif;	
	color: #6ec1e4;
}

h6 {
  display: block;
  font-size: .67em;
  /*font-size: 10px;*/
  margin-top: 0;
  margin-bottom: ;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

.h7 {
	/* font-weight: bold; */
	font-family: Georgia, Times, "Times New Roman", serif;
	font-size: 12px;
	/* color: #6ec1e4; */
	/*padding-bottom:2px;*/
	/*border-bottom: 7px solid #6ec1e4;*/ 
}

.h8 {
	font-weight: bold;
	font-family: Georgia, Times, "Times New Roman", serif;
	font-size: 8px;
	/*color: #6ec1e4;*/
	/*padding-bottom:2px;*/
	/*border-bottom: 7px solid #6ec1e4;*/ 
}

.h9 {
	
	font-size: 10px; 
}

.h11 {
	font-weight: bold;
	font-family: Georgia, Times, "Times New Roman", serif;
	font-size: 11px;
	color: #63676e;
	/*padding-bottom:2px;*/
	/*border-bottom: 7px solid #6ec1e4;*/ 
}

.hanipot {
	display: none;
}

.hdkdarkblue {
	/*font-weight: bold;	*/
	color:  #5e5eff ;
}

.hdklightblue {
	/*font-weight: bold;	*/
	color:  #6ec1e4 ;
}

.hmaroon {
	/*font-weight: bold;	*/
	color:  #C70039 ;
}

.hlightgray {
	/*font-weight: bold;	*/
	color:  #a9aaac ;
}

.hdarkgray {
	/*font-weight: bold;	*/
	color:  #63676e ;
}

.hgreen {
	/*font-weight: bold;	*/
	color:  #38ff33 ;
}

.horange {
	/*font-weight: bold;	*/
	color:   #FF5733 ;
}

.hyellow {
	/*font-weight: bold;*/
	/*font-family: Georgia, Times, "Times New Roman", serif;
	font-size: 8px;*/
	color:  #FFC300 ;
}

.itemA {	
	font-size: 10px;
	padding: 2px 2px 2px 2px;
	margin: 0px 0px 0px 10px;
	border-radius: 5px;	
	/*border: 1px solid grey;*/
	font-weight: 100;	
	
}

.itemB {
	color: white;
	background-color: #000000;
	border: 2px solid blue;	
	/* border-radius: 5px; */
	padding: auto;
	font-size: 12px;		
	font-weight: 100;	
}

/* Base look for avatar cards only */
.boxcarousel .itemB{
  border:0;
  border-bottom:2px solid grey;
  border-radius:15px;
  padding-top:2px;
  font-weight:100;  
  /* transition:border .1s ease, box-shadow .1s ease; */
}

/* Selected/active */
.boxcarousel .itemB.is-active{	
  border:2px solid blue;
  border-bottom:0px solid black;
  /* padding-top: 2px;  */
  /* box-shadow:0 0 0 2px rgba(0,123,255,.15); */
}

	/* .moodslibitemB {
		color: white;
		background-color: #000000;
		border: 2px solid rgb(88, 88, 92);	
		border-radius: 5px;
		padding: auto;
		font-size: 12px;		
		font-weight: 100;	
	} */

	.moodslibitemB{
		border-bottom: 1px double #ffffff6b;
    	border-radius: 20px;
		font-size:12px;
		font-weight:100;
		flex: 0 0 87px;     /* fixed width cards */
	}

.itemB:hover a{
	color: white;
	background-color: #1ab394;
	border: 2px solid #e09952;
	font-weight: bold;
	display: block;
	border-radius: 20px;
}

#footer > .itemB:hover a{
	color: white;
	background-color: #1ab394;
	border: 2px solid #e09952;
	font-weight: bold;
	display: block;
	border-radius: 20px;
}


/*.itemB {
	 grid-row: 1 / 3;
}*/

/*.itemC {
	 grid-row: 1 / 3;
}*/

.Line{
	margin-top: -20px;
}

#msgBox{
  resize: none;                 /* users can't drag to resize */
  overflow: hidden;             /* no inner scrollbar; we'll auto-grow */
  white-space: pre-wrap;        /* keep user newlines, allow wrapping */
  overflow-wrap: anywhere;      /* break very long words/URLs */
  word-break: break-word;       /* fallback for older engines */
  max-height: 40vh;             /* optional cap so it doesn't eat the screen */
}

.navbar{
	margin-left:-20px;
	margin-right:-10px;
	padding-top: 0px;
	padding-bottom: 0px;
}

#navbar12{
	margin-top: 0px;
	margin-bottom: 0px;
}

/*.navbarcell{
	margin-top: :0px;
	margin-bottom: :0px;
}*/

.navbar-nav li{
	font-weight: bold;
	font-family: Bitter,GEorgia.Times,"Times New Roman",serif;
	font-size: 1em;
}

/*nav-link a:hover{
	color: #ffffff;
	background-color: #1ab394;
	font-weight: bold;
	display: block;
	border-radius: 5px;
}*/

.moodselector.boxcarousel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 90px;
    height: 108px;
    margin: 2px;
}

.moodselector.boxcarousel .itemB {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.moodselector.boxcarousel .itemB .mood-label{
    padding-top: 0.25rem;
}

.moodselector.boxcarousel .itemB.is-active .mood-label{
    padding-top: 0.5rem;
}

.moodselector.boxcarousel .avatar-img {
    width: 82px;
    height: 82px;
    object-fit: cover;
    border-radius: 15px;
	padding: 2px;
}

.moodselector.boxcarousel .mood-label {
    font-size: 10px;
    line-height: 1.1;
    text-align: center;
    margin-top: 2px;
}


.sticky-offset{
	top: 75px;
	/*background: #F7F7F7;*/
	/*min-height: 0;*/
	/*height: 45px;*/
	/*padding: 24px 0 0 0;*/
	/*margin-bottom: 0;*/
}

#Side_Menu {
	padding-top: 10px;
}

#Side_Menu a{
	color: #9fblc2;
}

#Side_Menu active a{
	color: #ffffff;
	background-color: #27AAE1;
	font-weight: bold;
}

#Side_Menu a:hover{
	color: #ffffff;
	background-color: #1ab394;
	font-weight: bold;
	display: block;
}

#title2 {
	/*font-weight: bold;*/
	font-family: Bitter,GEorgia.Times,"Times New Roman",serif;
	font-size: 1.4em;
	font-style: italic;
	color: #ffffff;
	text-decoration: none;
}

input {
  font-size: 20px;
  height:50px;
}
html{
  height:100%;
}

body{
  
  background-color: #000000;
  height:100%;
}

.sent-msg {
  margin-left: 2px;
  padding: 2px;
}

.received-msg {
  padding: 2px 2px 2px 2px;
}

#sm-rec-msg > .received-msg {
  padding: 2px 5px 2px 16px;
}

/*@media (min-width: 576px)
.col-sm-3 {
	max-flex: 25%;
}*/

@media only screen and (max-width: 360px) { 
	.sent-msg {
		padding: 2px 2px 2px 22px;
	}	

	.received-msg {
		padding: 2px 2.5rem 2px 2px;
	}
}

@media only screen and (max-width: 430px) { 
	.sent-msg {
		padding: 2px 2px 2px 25px;
	}	

	.received-msg {
		padding: 2px 2.0rem 2px 0px;
	}

	#msgspg > .sent-msg {
		padding: 2px 2px 2px 0.75rem;
	}

	#msgspg > .received-msg {
		padding: 2px 1rem 2px 0;
	}
}

/* approximate large iPhone class: wide viewport + high DPR */
@media (min-width: 430px) and (min-resolution: 3dppx) {
	.msgs.sent-msg {
		margin-left: 8px;
		padding: 2px 2px 2px 22px;
	}	

	.msgs.received-msg {
		margin-right: 10px;
		padding: 2px 2.5rem 2px 2px;
	}
}


/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/


@media only screen and (max-width: 767px) {

  	.activeA{
  		font-size: 12px;
		color: white;
		background-color: #27AAE1;
		padding: 3px;
		margin: 0px 0px 0px 17px;
		border: 1px solid #e09952;
		border-radius: 5px;	
		font-weight: 600;		
	}

	.activeAlogin{
  		font-size: 15px;
		color: white;
		background-color: #27AAE1;
		padding: 2px;
		margin: 0px 0px 0px 0px !important;
		border: 1px solid #e09952;
		border-radius: 5px;			
	}

	body {    
    	padding: 55px 0 0 0;

  	}

  	.itemA {
		font-size: 15px;
		padding: 1px;
		margin: 0px 0px 0px 10px;
		border-radius: 5px;	
		border: 1px dotted blue;
		font-weight: lighter;
		/*font-color: white;*/
		color: blue;
		/*background-color: #27AAE1;		*/
	}

	.itemAlogin {
		font-size: 15px;
		padding: 1px;
		margin: 0px 0px 0px 10px !important; 
		border-radius: 5px;	
		border: 1px dotted blue;
		font-weight: lighter;
		/*font-color: white;*/
		color: blue;
		/*background-color: #27AAE1;		*/
	}

	.itemA:hover{
		color: #ffffff;
		background-color: #27AAE1;
		font-weight: lighter;
		border: 1px solid #e09952;
		border-radius: 25px;	
		
	}

  	.itemAdormant {
	color: blue;
}	

	.itemB {
		font-size: 12px;
		padding: 0px;
		margin: 0px 0px 0px 0px;
		/* border-radius: 5px;	 */
		border: 2px solid blue;
		font-weight: 100;
		background: #000000;		
	}

	/* .moodslibitemB {
		color: white;
		background-color: #000000;
		border: 2px solid rgb(88, 88, 92);	
		border-radius: 5px;
		padding: auto;
		font-size: 12px;		
		font-weight: 100;	
	} */

	.moodslibitemB{
		border-bottom: 1px double #ffffff6b;
    	border-radius: 20px;
		font-size:12px;
		font-weight:100;
		flex: 0 0 87px;     /* fixed width cards */
	}

	.navbar{
		margin-left:-20px;
		margin-right:-20px;
		padding-top: 0px;
		padding-bottom: 0px;
			
	}

}




/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/



/*@media screen and (max-width: 576px) */
@media only screen and (max-width: 767px) and (orientation: portrait) {


/*	.col-sm-3 {
		max-flex: 100%;
  	}*/

  	.activeA{
  		font-size: 12px;
		color: white;
		background-color: #27AAE1;
		padding: 3px;
		margin: 0px 0px 0px 10px;
		border: 1px solid #e09952;
		border-radius: 5px;		
		font-weight: 600;	
	}

	.activeAlogin{
  		font-size: 15px;
		color: white;
		background-color: #27AAE1;
		padding: 2px;
		margin: 0px 0px 0px 0px !important;
		border: 1px solid #e09952;
		border-radius: 5px;			
	}

	body {    
    	padding: 55px 0 0 0;

  	}

	.grid-container1 {
	  display: grid;
	  grid-template-columns: 100px auto auto auto;
	  grid-template-rows: 40px 40px;		  
	  grid-gap: 3px;
	  background-color: yellow;
	  padding: 3px;
	  margin-bottom: 4px;
	  border: 2px solid blue;

	}
	.grid-container1 > div {
	  background-color: white;
	  text-align: start;
	  padding: 2px 2px;

	  /*font-size: 30px;*/
	}

/*	.h7 {
	font-weight: bold;
	font-family: Georgia, Times, "Times New Roman", serif;
	font-size: 12px;
	color: #6ec1e4;*/
	/*padding-bottom:2px;*/
	/*border-bottom: 7px solid #6ec1e4;*/ 
	/*}*/

	.iconselectdk {
	color: black;
}

  	.itemA {
		font-size: 15px;
		padding: 2px;
		margin: 0px 0px 0px 17px;
		border-radius: 5px;	
		border: 1px dotted blue;
		font-weight: lighter;
		/*font-color: white;*/
		color: yellow !important;
		/*background-color: #27AAE1;		*/
	}

	.itemAlogin {
		font-size: 15px;
		padding: 2px;
		margin: 0px 0px 0px 10px !important; 
		border-radius: 5px;	
		border: 1px dotted blue;
		font-weight: lighter;
		/*font-color: white;*/
		color: blue;
		/*background-color: #27AAE1;		*/
	}

	.itemA:hover{
		color: #ffffff;
		background-color: #27AAE1;
		font-weight: lighter;
		border: 1px solid #e09952;
		
	}

	.itemAdormantdk {
	color: blue;
}	

	.itemB {
		font-size: 10px;
		padding: 0px;
		margin: 0px 0px 0px 0px;
		/* border-radius: 5px;	 */
		border: 2px solid blue;
		font-weight: 100;
		background: #000000;		
	}

	.navbar{
		margin-left:-20px;
		margin-right:-20px;
		padding-top: 0px;
		padding-bottom: 0px;


/*	#Footer {
		width: 100%;
	}*/
}


.itemB .nav-link.activeV,
.itemB .nav-link[aria-current="page"] {
  background-color: #f0f8ff;
  color: #0b3d91;
  border: 1px solid rgba(11,61,145,0.12);
  box-shadow: 0 1px 4px rgba(11,61,145,0.06);
}
