@charset "utf-8";
<!--

* {
  box-sizing: border-box;
}

/* === general ===  */
body { width: 100%; height: 100%; position:relative; margin: 0; padding: 0; line-height:18px; letter-spacing:1px; font-size:14px; font-family:Arial, Helvetica, sans-serif; -webkit-text-size-adjust:100%; background-color: rgba(168,59,61,0.9);
}

.mainBox { width: 100%; max-width: 1280px; height: 100%; position:relative; margin: auto;
    
    background-image:url(../pic/index-background-optimized.jpg);
    background-position:top ; background-repeat: no-repeat;
  background-size: cover; 
    background-color: rgba(168,59,61,.8);
}

.rotate180 {
        transform: rotate(180deg);
}

/* Fullscreen spinner overlay */
#pageLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999; /* on top of everything */
    background-color: rgba(255, 255, 255, 0.9); /* semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Spinner animation */
#pageLoader .spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #333;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 1s linear infinite;
}

/* Spin keyframes */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.screen-cover { 
    position: fixed; /* Fixed ensures it stays over everything */
    top: 0; 
    left: 0; 
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%; 
    height: 100%;
    z-index: 9999; /* Ensures it's above other elements */
    /*pointer-events: auto; Allows interaction with the popup */
    /* pointer-events: all; */
}

.screen-cover-child {
    min-width: 50%;
    min-height: 50%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 50px 50px 10px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    border-radius: 15px;
}

div, a, ul, li, ol, dl, input, fieldset { 
-moz-box-sizing:border-box; -webkit-box-sizing:border-box; box-sizing:border-box;
} /* with 100% width border will not go outside the box  */


ul, ol, dl { margin:0; padding:0; list-style:none;
}  


h1,  h2, h3, h4, h5, h6 {  margin:20px 0 5px 2%; padding:5px 0 0 2%; font-size:22px; line-height:22px; font-weight:normal; font-style:italic; clear:both; color: darkblue; text-shadow:0px 1px 0px lightblue; font-family:Georgia, "Times New Roman", Times, serif; text-align: left;
}
h4, h5, h6 { font-size:18px;
} 
legend h6 { min-width: 100%; margin: 0; padding: 0;
}


div { margin:0; padding:0;
}

p { margin:0; padding: 5px 5px 5px 2%;
}

/* to get rid of  window.location.hash border */
:focus { outline: none;
}

a, a:visited, a:active, a:focus, a:checked { border:none; min-width:30px; margin:0; padding:0; display:inline-block; font-weight:normal; color:darkblue; cursor: pointer; border-style: none;
    -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}
a:hover { min-width:30px; margin:0; padding:0; font-weight:normal; color:blue; border:none; 
}

img, a img, a:hover img { float:left; border:none; margin:0; padding:0;
}
    

.article { width: 90%; margin: auto; border: 1px outset #09F; padding: 2%; border-radius: 20px; 
}
.floatL { float:left;
}
.floatR { float:right;
}
.centerText { text-align: center;
}
.noDisplay { display: none;
}
.min100 { min-width:100px; 
} 
.min200 { min-width:200px; 
}
.width200 { width:200px; 
} 
.width100Per { width:100%; 
} 

.topR {
    position: fixed; /* Keeps the header in place */
    top: 10px; 
    right: 10px;
    z-index: 2000;
} 

.bottomR {
    position: fixed; /* Keeps the header in place */
    bottom: 10px; 
    right: 10px;
    z-index: 2000;
} 

.fixedCenter {
    position: fixed; /* Keeps the header in place */
    top: 0; 
    left: 0;
    width: 100%;
    z-index: 1000;
} 

.flexHight { position:relative; display:flex; flex-direction:column; width:100%; height:100%;
}
.full-height {
  height: 100vh;
}
.centerH {
  display: block;
  margin-left: auto;
  margin-right: auto;
  clear: both;
}
.full-screen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.center-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* === child full-screen-center ===  */
.centering {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.centerTxt {
    text-align: center;
}
 

.important-txt { color: red;
}

    
/* === table Form ===  */
table { width: 100%; margin:0 auto; padding:0;
}
fieldset { margin:auto; padding:5px; border:groove 1px #09F; 
}
th, td { min-width:50px; min-height:40px; vertical-align:middle;
}
select, input, label { min-height:40px; vertical-align: middle; display:inline-block; border-radius: 5px;
-moz-box-sizing:border-box; -webkit-box-sizing:border-box; box-sizing:border-box; letter-spacing:1px;
}

select { -webkit-appearance:menulist-button; min-width:60px; background-color: #FFF;
    height: 40px;
    font-size: 16px; 
    line-height: 40px;
}

option{ height:40px; padding:10px; background-color: #FFF;
}

select, input[type="text"], input[type="date"], input[type="number"], input[type="password"] { width:100%; min-height:40px; border: 1px outset #09F; border-radius: 10px; 
}

input[type="date"] { min-width: 96%; height: 40px; vertical-align: middle; line-height: 40px;
}

input[type="radio"] { height:25px; min-width:25px; display:inline-block; vertical-align: middle; margin:2px auto; cursor:pointer; 
}

textarea { width: 100%; margin:0 auto; padding: 2%; font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif"; font-size: 14px; border: 1px outset #09F; border-radius: 10px; 
-moz-box-sizing:border-box; -webkit-box-sizing:border-box; box-sizing:border-box;
}


/* === submit buttons ===  */    
input[type="submit"], button, .label, .labelDisabled, a.link_as_button { min-width:40px; min-height:40px; line-height:40px; margin:5px; padding:0 10px; font-size:14px; cursor:pointer; background-color:#3E455E; border:1px outset #cccccc; border-radius: 20px/30px; text-align:center; outline:none; display: inline-block; 
    
   box-shadow:0px 0px 6px 0px rgba(0,0,0,0.6); color: #FFF;
     box-shadow:0px 4px 6px 0px rgba(0,0,0,0.6);
}
    
input[type="submit"]:hover, button:hover, a.link_as_button:hover { background-color: #566261; 
    box-shadow: 0px 0px 6px 0px rgba(3,100,0,0.8); 
     color:#7EF56F; background-color: #587373; 
}
    
input[type="submit"][disabled], input[disabled], button[disabled] { color:#404040; cursor:default; color:#A5A5A5; background-color: #3E455E; box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.4); opacity: 0.6;
}

input[type="submit"][disabled]:hover, button[disabled]:hover { cursor:default; color:#A5A5A5; background-color: #3E455E;
} 

input[type="submit"].disabled_button { background-color:#E2E7E7; border:1px #CCC solid; color:#F00; cursor:none;
}

input[type="submit"].button_del, button.button_del { min-width: 30px; height: 40px; line-height: 40px; margin:0; border:1px outset #F00; border-radius: 15px; text-align:center; opacity: 0.8; box-shadow:0px 8px 12px 0px rgba(0,0,0,0.6); background: red; color: #333;
}

a.link_as_button { -webkit-appearance: button; -moz-appearance:button; appearance: button;
    text-decoration: none;
}

input[type="submit"].button_as_link { height:100%; min-width:100%; line-height:30px; margin:0; padding:0; border:0; border-radius:0; background:none; text-align: center; color: #000; background-color: lightblue;  background-color: #E3EFF0; color: blue;
    -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; 
    -webkit-appearance:none; /* Safari and Chrome */
    -moz-appearance:none; /* Firefox */
    -ms-appearance:none; /* IE 9 */
    -o-appearance:none; /* Opera */
    appearance:none; /* W3C */
}

input[type="submit"].button_cancel { margin:0 10px; padding:0 5px; color:#F8999B; border:1px outset #F8999B; border-radius: 10px/20px; text-align:center;
}

input[type="submit"], button, label { cursor:pointer;
} 

.likeBtn { background: url('../pic/like.jpg') no-repeat center/cover; 
}
.unLikeBtn { background: url('../pic/liked-icon.jpg') no-repeat center/cover; 
}
.messageBtn { background: url('../pic/read-message.jpg') no-repeat center/cover;
}
   
    
/* === complete_profile ===  */
    .label input[type="file"], .labelDisabled input[type="file"] { position: absolute; top: -1000px;
    }
    .label:hover { background: darkblue;
    }
    .labelDisabled, .label:active, .label:valid + span .label:invalid + span, .label input:disabled+span { background: #3E455E; color: #A5A5A5; cursor: default;
         box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.4); opacity: 0.6;
    }


/* === message general ===  */
.message, .warning, .errors { width: 98%; max-width: 800px; min-height:50px; margin: auto; padding: 5px; text-align:center; background:#FFF; color:#018E00; color:green; border:1px solid green; margin-top:2px; padding-top:10px; border-radius: 10px/20px; overflow: auto; clear: both; float: none;
}
.warning, .errors, .warning_info { color:#F00; border:1px solid #F00; border-radius: 10px/20px;
}
.errors li { padding:0; clear:both; color:#F00; line-height:14px; 
}
.error_field, input.error_field { border:1px solid #F00;
}
.autofocus { background-color:greenyellow; border:1px solid green;
}


/* === general ===  */
.enquiry_overlay { background:rgba(0, 0, 0, 0.7); transition:opacity 50ms; visibility:visible; opacity:1; color:#000; z-index:1000; padding:2%;
     -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
    
position:fixed; top:0; left:0; padding:0; margin:0; width: 100%; height: 100%;
}
.enquiry_overlay .popup { max-width:600px; position:relative; margin: auto; padding:1%; background:#E5E5E5; border:2px outset #FFF; border-radius:10px; margin-top:2%; 
    overflow: auto; height: 94%; min-height: 94%; 
}


a.closeBtn, a:visited.closeBtn, a:active.closeBtn, a:focus.closeBtn { clear: both; float:right; width:45px; height:45px; margin:0; padding:0; line-height:45px; text-align:center; font-size:14px; font-weight:bold; text-decoration: none; color: #000; display:block; background:#F00; border-radius: 10px; border:1px groove #666; margin-bottom:10px;
}
a:hover.closeBtn { color: #BE5D5F;
}
.enquiry_form table, .enquiry_form textarea { width:100%; max-width: 800px; text-align: left; padding: 2%;
}



/* === headerPub ===  */
.headerPub { width:100%; min-height: 80px; position:relative; text-align: center;
    font-size: 18px; font-stretch:condensed; background-color: rgba(168,59,61,.8);
    border-bottom: 2px groove #09F; z-index: 2000;
    
    display: flex; justify-content: flex-end; 
}
    
a.logoL { width: 90px; position: absolute; top: 5px; left: 5px;
}

ul.loginNav { float:right; padding-bottom: 20px;
}
ul.loginNav li { float:none; display: inline-block;
}

.loginNav a, .loginNav a:visited, .loginNav a:active, .loginNav a:focus { 
    min-width: 110px; min-height: 40px; line-height: 40px; 
    margin:0 5px; padding: 5px; color:#FFF; vertical-align:middle; text-align:center; text-decoration:none; border-radius:10px/20px; border-bottom:2px #000 solid; box-shadow: 0px 16px 8px 0px rgba(0,0,0,0.8); border-color: #000;
    
}
.loginNav a:hover {
    border-bottom:2px #7EF56F solid; box-shadow: 0px 16px 8px 0px rgba(0,0,0,0.5); color: #7EF56F;
}


/* === mainContent ===  */
.mainContent { min-height: 600px; 
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center; 
  background-color: rgba(255,255,255,1);
}


/* === Multi ===  */
.twoColTable { max-width: 800px; position: relative; margin:1% auto; border-radius:10px; box-shadow:0px 8px 12px 0px rgba(0,0,0,0.6); border:1px outset #FFF; padding: 20px 1%; text-align: center; clear: both; 
}

.twoColTable table, .twoColTable fieldset, .twoColTable textarea { width:98%; margin: auto; text-align: left;
}

.layersNav li { width:50%; height:60px; margin-bottom:20px; border-bottom:2px groove #3F3F3F; float:left;
}

.twoColTable td { height:60px;
}

.twoColTable select, .twoColTable input[type="text"] { width:100%;
}

li.current_view { border:none; color:#D2F9DA; border-radius:10px;    
}


/* === On hover dropdown password ===  */
.validInfo { position:relative;
}
.validInfo-content { display:none; width:100%; min-width:200px; margin-bottom: 10px; padding:2%; position:absolute; bottom:100%; right:0; box-shadow:0px 8px 16px 0px rgba(0,0,0,0.8); color:#F00; background:#FFF; border-radius:10px; line-height:110%; font-size: 70%; text-align: left;
}
.validInfo:hover .validInfo-content { display:block;
}


/* === header account ===  */
    
    .header { width:100%; min-height: 55px; color: #FFF; text-align: center; background-color: #39395C; background-color: #3E455E; z-index: 1100; background-color: rgba(168,59,61,.8);
    }    

    ul#nav { margin:0; padding:0; position: relative; display:inline-block; float:left; margin-top: 5px;
    }
    #nav li { border:2px groove gray; margin: 0 2px; padding:0; min-width:130px; height:50px; display:inline-block; position: relative; float:left; border-top-left-radius: 15px; border-top-right-radius: 15px; background:#3E455E; background-color: #5F5F8B; 
    }
    #nav li a { display: block; line-height: 50px; color: #FFF; text-decoration:none; 
    }    
    #nav li a:hover { color:#7EF56F; box-shadow:0px 0px 16px 0px rgba(0,0,0,0.8);
    }

    /* === sub-menue ===  */
    #nav ul { position: absolute; left:0px; top:48px; display: none; z-index:1000; background-color:#3E455E;
    }
    #nav li:hover ul { width: 150%; display:inline-block; margin-left: -2px; padding: 5px; box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.8);
    }
    #nav li li { height:100%; width:100%; font-size:90%; border-radius: 5px; margin: 0;
    }
    #nav li li:hover { background-color: #587373;
    }

    #nav li.selected-sub { border-bottom: none; background-color:#51567C; background-color:#FFF; 
    }
    #nav li.selected-page > a, #nav li.selected-sub > a { color:#7EF56F; color: blue; 
    }
    #nav li.selected-page > a { color:#7EF56F; background-color: #587373; 
    }

    /* === right nav ===  */
    ul.noteNavR { float: right; font-size: 12px;
    }
    .noteNavR li { width:45px; height:45px; margin: 5px; padding:0; border:1px groove #cccccc; display:inline-block;     position: relative; float:left; border-radius: 15px; background-color: #5F5F8B; line-height: 45px; box-shadow:0px 0px 6px 0px rgba(0,0,0,0.6);
    }
    .noteNavR li:hover { box-shadow:0px 0px 6px 0px #FFF; background-color: #587373; color:#7EF56F;
    }
    .noteNavR li img { border-radius: 15px;  
    }
   .noteNavR a { display: block; line-height: 50px; color: #FFF; text-decoration:none;
    } 
/* === End header ===  */
  

/* === content ===  */
    .content-pub { position: relative; width: 100%; min-height: 75vh; padding: 10px 0; background-color: #FFF;
    } 

    .content { position: relative; width: 100%; height: 100%; min-height: 100vh; display: inline-block; padding: 10px 0; background-color: #FFF; 
    } 

     
/* === crop & upload ===  */
ul.crop { width: 100%; text-align: center; clear: both; margin-bottom: 20px; 
  -webkit-overflow-scrolling: touch;  /* Smooth scrolling in iOS */  
  position: relative;
  overflow: hidden;
  max-width: 100%;
  -webkit-touch-callout: none;  /* Disable callout for Safari */
  -webkit-user-select: none;  /* Disable text selection */
  -webkit-tap-highlight-color: transparent;  /* Disable tap highlight */
  display: block;
    
    width: auto;
} 
ul.crop li { float: left;
}

ul.crop img {
  max-width: 100%;
  height: auto;
  touch-action: none;  /* Disable gestures like pinch-zoom */
  user-select: none;  /* Disable text selection */
  image-orientation: from-image;  /* Fix image orientation automatically */
}
li.cropPhoto { width: 100%; clear: both; float: none;
}


/* === member search bar ===  */

.search-box { 
    max-width: 580px;
    position: relative;
    margin: 0; padding: 5px; text-align: center;
    margin-bottom: 20px;
    border: 1px outset #09F; border-radius: 15px; box-shadow:0px 8px 12px 0px rgba(0,0,0,0.6);
    float: right;
    height: 90px;
    overflow: hidden;
} 

.search-bar { 
    width: 100%;
    display: inline-block;
} 

.advance-search { 
    width: 100%;
    display: inline-block;
}

#advance-popup:target {
    transition: 1.9s ease;
    height: 590px;
    }


.search-bar h6 { margin: 5px; padding: 0; margin-bottom: 5px; text-align: center;
} 
.search-bar ul li { width: auto; padding: 0; margin-right: 10px;
     display: inline-block; float: left; 
    height: 50px; line-height: 50px; 
}
.search-bar select { width: 220px; cursor: pointer;
}


.photoInfo { width: 98%; min-height: 120px; text-align: center; font-size: 12px; line-height: 12px; clear: both;
}  


.photoInfo li { width: 100%; height: 100%; min-height: 380px; border-radius: 20px; border: 1px outset #09F; margin: 5px 2%; padding: 5px; 
    
    display:inline-block; overflow: hidden;
     box-shadow:0px 8px 12px 0px rgba(0,0,0,0.6);
    
    *display:inline; /*IE7*/ *zoom:1; /*IE7*/ 
}
.photoInfo li:hover { box-shadow:0px 0px 6px 0px #FFF; transition: 0.2s ease;
}

.photoInfo img { width: 238px; height: 238px; border: 1px outset #09F; border-radius: 15px;
}
.photoInfo a { margin: 1%;
    position: relative;
}

.photoInfo li ul { 
    display: flex;
    justify-content: center; /* Centers items horizontally */
    align-items: center; /* Centers items vertically */
    padding: 0;
    margin: 0;
}

.photoInfo li li { width: 60px; height: 60px; border-radius: 0; border: none; margin: 0 10px; padding: 6px; 
 box-shadow: none; float: left;
    
    min-width: 60px; min-height: 60px;
}
.photoInfo li li input[type="submit"] { width: 90%; height: 90%;  min-width: 90%; min-height: 90%; margin: 0; padding: 0; line-height: 100%; border-radius: 15px; 
}
.photoInfo li p { width: 100%; float: none; clear: both;
} 



/* === Send messages ===  */

button.cancelBtn { width: 40px; height: 40px; min-width: 40px; min-height: 40px; line-height: 40px; position: fixed; top: 5px; right: 5px; border-radius: 5px; background-color: #BABABA; color: #333; 
    z-index: 2000;
}
button:hover.cancelBtn { background-color: #f0f0f0; color: #000FD9; 
}

.messages { position: relative; min-height: 400px; width: 100%; height: 100%;
}
.leftItems { width: 200px; margin: 5px 0; float: none; height: 60px; border: 1px outset #09F; cursor: pointer; line-height: 60px; box-shadow:0px 0px 5px 0px rgba(0,0,0,0.8);
}
.leftItems:hover { box-shadow:0px 0px 1px 0px rgba(0,0,0,0.8);
}
.leftItems img { width: 58px; height: 58px;   
}

.highlighted { background-color: #f0f0f0; color: blue; box-shadow:0px 0px 1px 0px rgba(0,0,0,0.8);
}
.read {
}
.unread { border: 1px solid #f0f0f0; border-color: red; color: red;
}

.display-box { position: absolute; left: 205px; top:0; bottom: 0; right: 0; overflow: auto; padding: 5px;
}

.display-box textarea { width: 100%; height: 100%; min-height: 400px; background-color: #f0f0f0; box-shadow:0px 0px 16px 0px rgba(0,0,0,0.8);
}
.popupSend li { width: 100%; height: 100%; border: none; display: inline-block;
}
ul.popupSend li ul, .hideForm { display: none;  
}
.popupSend li:hover ul { display: inline-block; text-align: center;
}

.popupSend li textarea { width: 100%; height: 40px; min-height: 40px;  background-color: #FFF;
}
.popupSend li:hover textarea { width: 100%; height: 100%; min-height: 330px; transition: 1.9s ease;
}




/* === photo_gal ===  */  
ul.photo_gal { width: 98%; min-height: 120px; text-align:center; 
}  
ul.photo_gal img { width: 160px; min-height: 90px; box-shadow:0px 8px 16px 0px rgba(0,0,0,0.8); border: 1px outset #09F; border-radius: 15px; 
}
.photo_gal li { border-radius: 20px; border: 1px outset #09F; margin: 1%; padding: 5px; display:inline-block; 
    *display:inline; /*IE7*/ *zoom:1; /*IE7*/ 
}
.photo_gal li.focPhoto { position: relative; border: none; padding: 0;
} 
.photo_gal li.focPhoto img { width: 100%; min-width: 300px; min-height: 200px; box-shadow:0px 2px 2px 0px rgba(0,0,0,0.4); 
} 
    
    
/* === Popup menue / edit_photos ===  */   
.edit-menue { width: 100%; min-height: 120px; text-align:center; margin-top: 20px;
}  
.edit-menue img { width: 100%; min-height: auto; box-shadow:0px 8px 16px 0px rgba(0,0,0,0.8); border: 1px outset #09F; border-radius: 15px; 
}
.edit-menue li { width: 45%; position: relative; border-radius: 20px; border: 1px outset #09F; margin: 1%; padding: 5px; display:inline-block; 
    *display:inline; /*IE7*/ *zoom:1; /*IE7*/ 
} 

img.profile-pic { width: 300px; height: 300px; box-shadow:0px 8px 16px 0px rgba(0,0,0,0.8); border: 1px outset #09F; border-radius: 15px; float: none; clear: both; margin-left: auto; margin-right: auto; margin-bottom: 20px; display: block;
}

    
/* === sub-menue subnails / edit_photos ===  */  
.edit-menue ul { display: none;
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; 
    width: 100%; height: 100%;
}
.edit-menue li:hover ul { display:inline-block;
}
.subMenue li { border: none;  margin: 0; padding: 0;
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; 
    width: 100%; height: 100%;
}
.subMenue button { width: 100%; height: 100%; opacity: 0.7; background-color: #FFF; margin: 0; padding: 0;
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index:1000; color: #D60003; font-size: 16px;
}
  

    
/* === footer ===  */
.footer { border-top:2px groove #09F; padding:20px 0; clear:both; font-size:12; line-height:16px; color:#FFF; background:#3E455E; font-size: 12px; background-color: #784646; background-color: rgba(168,59,61,.8);

display: inline-block; width: 100%;
padding-bottom: 130px; position: relative;
}
.footer ul { margin:0 auto; max-width:800px; display:table;
}
.footer li { display:table-cell; width:auto; text-align:center;
}
.footer a, .footer a:visited, .footer a:active, .footer a:focus { margin:0 10px; display:block; vertical-align:middle; color: #FFF;
}
.footer a:hover { color: lightblue;
}

.footer p { text-align:center; clear:both; margin:10px; padding:10px 5px 0 5px; 
}
/* === End footer ===  */



/* Spinner Styles */
.spinner-container { position: relative; width: 100%; display: inline-block; 
}
#spinner {
    padding: 5px;
    margin: 5px;
    display: none; /* Hidden by default */
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}



@media screen and (max-width: 570px) {

.content { padding-top: 140px;
}
    
.screen-cover-child {
    min-width: 100%;
    min-height: 50%;
    position: fixed;
    top: 10%;
    left: 10%;
    transform: translate(-10%, -10%);
    padding: 60px 10px;
}
    
    .mainBox { background-position: -540px;
    }
    .logoL { display: none;
    }

    /* === header ===  */

    .header {
        position: fixed; /* Keeps the header in place */
        top: 0; 
        left: 0;
        width: 100%;
        z-index: 1000;
    } 
    
    
    ul#nav { display: flex; justify-content: center; flex-wrap: wrap;
      align-items: center; float: none; width: 100%; 
    }
    #nav li { margin: 2px; min-width: 48%; height:50px;  
    }
    #nav li:hover ul { width: 100%; margin-left: 0px; 
    }
    
    /* === right nav ===  */
    ul.noteNavR, ul.noteNavR li { margin: 5px;
    }
    
    /* === content ===  */    
    .twoColTable { margin: 2%; border: none;
    }
    
    /* === members ===  */

    
    .search-box { 
        margin: 4%;
        height: 220px;
        margin-top: 0;
    }
    
#advance-popup:target {
    transition: 1.9s ease;
    height: 720px;
    margin-top: 130px;
    }
    
    .search-bar li { min-width: 100%; margin-bottom: 10px;
    }


    /* === messages ===  */
    .leftItems { width: 200px; margin: 5px 0; float: none; height: 60px; border: 1px outset #09F; cursor: pointer; line-height: 60px; box-shadow:0px 0px 5px 0px rgba(0,0,0,0.8);
    }
    .display-box { position:static; max-height: 500px;
    }
    .display-box textarea, .popupSend li:hover textarea { width: 100%; height: 100%; min-height: 200px;
    }
    .display-box textarea:hover { min-height: 400px; transition: 1.9s ease;
    }
    
    .width200 { width: 100px; }

    /* === crop & upload ===  */

    ul.crop { width: 98%; float: left;
    }
    
}

@media screen and (min-width: 350px) and (max-width: 720px) {
    
    .mainBox { background-position: -350px;
    }
    
    .logoL { display: none;
    }
}

@media screen and (min-width: 350px) {
    #hb1 {
        display: none;
    }
}





-->