@charset "UTF-8";
/* CSS Document */

/*JEFF, HIDE THIS WHEN PUBLISHING */
#testLog {
    position: absolute;
    top: 0px;
    font-size: 12px;

    display: none;
}




:root {
  --red: hsla(0, 100%, 70%, 1);
  --redhover: hsla(0, 100%, 75%, 1);
  --blue: hsla(190, 80%, 40%, 1);
  --bluehover: hsla(190, 80%, 45%, 1);
  --bluedark: hsla(190, 80%, 30%, 1);
  
  /*NEW SEPT 2024*/
  --orange:hsl(30 100% 50% / 1);
  --darkgrey:hsl(0 0% 35% / 1);
  /*END OF NEW*/


  /*--darkgrey: hsl(180 10% 20% / 1);
  --darkgreyhover: hsl(180 10% 30% / 1);
  --darkgreyclick: hsl(180 10% 10% / 1);
  --lightgrey: hsl(0 0% 95% / 1);
  --white: hsl(0deg 0% 100%);  
  --shadowcolor: hsl(0deg 0% 0% / 70%);*/
}

/*
COLORS:
BLUE: var(--blue);
RED: hsla(0, 100%, 70%, 1);
TAN BACKGROUND: hsla(30, 20%, 90%, 1);

GREEN: hsla(80, 50%, 50%, 1);

*/
@font-face {
  font-family: robotoSlabRegular;
  src: url(fonts/RobotoSlab-Regular.ttf);
}

* {
	box-sizing: border-box;
	/*font-family: 'Roboto', sans-serif;*/
	/*font-family: 'Roboto Slab', serif;*/
    font-family: robotoSlabRegular;
	/*font-family: 'Zilla Slab', serif;*/
	/*font-family: 'Open Sans', sans-serif;*/
	color: var(--bluedark);
}
html {
    /*-webkit-user-select: none;*/
    /*touch-action: manipulation;*/ /*ADDED THIS TO SPEED UP CLICKS. -- NOT SURE IF IT HELPS*/
}


.cookiePolicy {
    z-index: 20;
    position: fixed;
    bottom: 0;
    background-color: white;
    width: 100%;
    padding: 20px;
    left: 0px;
    box-shadow: 0px -2px 5px hsl(0deg 0% 0% / 20%);
}
.cookiePolicy p {
    width: calc(100% - 150px);
    float: left;
}
.cookieButtonGroup {
    float: left;
    width: 150px;
}
.cookieButton {
    color: white;
    font-size: 18px;
    background-color: hsl(0 0% 20% / 1);
    border-radius: 70px;
    padding: 10px 20px;
    display: block;
    clear: both;
    width: 130px;
    text-align: center;
    float: right;
    margin-bottom: 20px;
    cursor: pointer;
}
.cookieButton:hover {
    background-color: hsl(0 0% 30% / 1);
}

body {
    margin: 0;
    /*background-color: hsla(190, 50%, 80%, 1);*/
    /*background-color: hsla(30, 20%, 90%, 1);*/
    /*background-color: hsla(190, 20%, 90%, 1);
    background-color: hsla(190, 80%, 40%, 0.1);*/
    /*background-color: hsla(0, 100%, 85%, 1);*/
    /*background-color: hsla(0, 0%, 75%, 1);*/
    /*font-family: 'allertaStencil', sans-serif !important;*/
    /*overflow: hidden;*/

   /* -webkit-touch-callout: none;*/                /* prevent callout to copy image, etc when tap to hold */
    /*-webkit-text-size-adjust: none;*/             /* prevent webkit from resizing text to fit */
    /*-webkit-user-select: none;*/                  /* prevent copy paste, to allow, change 'none' to 'text' */
}
body.curtainIntro {
    overflow: hidden;
}
body * {
    -webkit-tap-highlight-color: rgba(0,0,0,0);/*HIDES THE BLINKING EFFECT ON BUTTONS*/
}
body, #tips, #fadeMask {
    /*background-color: hsl(189, 54%, 93%);*/
    /*background-color: hsla(190, 80%, 70%, 1);*/
    background-color: hsla(0, 0%, 90%, 1);
    /*background: linear-gradient(-45deg, hsla(0, 100%, 70%, 1), white);*/
    /*background: hsla(0, 100%, 85%, 1);*/
}

a {
    color: hsla(0, 100%, 70%, 1);
}

.preload {
    opacity: 0.01;
    position: absolute;
    top: 0;
    left: 0;
}
.preload img {
    width: 32px;
    height: 32px;
}

.curtain {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 11;
    /*background: linear-gradient(-45deg, hsla(0, 100%, 70%, 1) 50%, hsla(190, 80%, 40%, 1) 50%);*/
    background: white;
}
/*.curtain1 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 11;
    background: linear-gradient(-45deg, hsla(0, 100%, 70%, 1) 50%, white 50%, white 51%, transparent 51%);
}
.curtain2 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 11;
    background: linear-gradient(-45deg, transparent 50%, white 50%, white 51%, hsla(190, 80%, 40%, 1) 51%);
}*/

#tapBlocker {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: transparent;
    z-index: 10;

    display: none;
}
#fadeMask {
    /*background-color: hsla(190, 54%, 93%, 1);*/
    /*background-color: hsla(0, 100%, 85%, 1);*/
    display: none;

    position: fixed;
    top: 0;
    border: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}


section {
	display: none;
    /*padding: 0px 20px 20px 20px;*/
    /*margin-bottom: 60px;*/
}

button {
	background-color: var(--blue);
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 30px;
    /*border-top: 2px solid hsla(190, 80%, 70%, 1);
    border-bottom: 2px solid hsla(190, 80%, 30%, 1);*/
    /*border-right: 0px;
    border-left: 0px;
    border-top: 0;*/
/*    box-shadow: 0px 1px 3px hsla(0, 0%, 0%, 0.3);*/

    background-color: hsla(0, 100%, 70%, 1);
    /*border-color: hsla(0, 100%, 80%, 1);
    border-bottom-color: hsla(0, 100%, 60%, 1);*/
    
    border: none;
    border-bottom: 2px solid hsla(0, 100%, 60%, 1);
    /*border: 2px solid hsla(0, 100%, 60%, 1);*/
    user-select: none;
    cursor: pointer;
}
button:focus {
	outline: none;
	/*background-color: var(--blue);*/
	background-color: hsla(0, 100%, 80%, 1);
}
button:active {
    position: relative;
    top:2px;
    outline: none;
    /*background-color: hsla(190, 80%, 30%, 1);*/
    /*border-top-color: hsla(0, 100%, 70%, 1);*/
    background-color: hsla(0, 100%, 65%, 1);
    border-bottom: 2px solid hsla(0, 100%, 55%, 1);
}
button:hover {
    background-color: hsla(0, 100%, 75%, 1);
}
.secondaryButton {
    /*background-color: transparent;*/
    /*background-color: hsla(190, 0%, 100%, 0.1);*/
    
    /*border: 2px solid hsla(190, 80%, 70%, 1);*/
    /*border-right: 0px;
    border-left: 0px;*/
    background-color: var(--blue);
    border: none;
    border-bottom: 2px solid hsla(190, 80%, 35%, 1);
    /*border: 2px solid hsla(190, 80%, 35%, 1);*/
    user-select: none;
    cursor: pointer;
}
.secondaryButton:active {
	/*border-top: 2px solid hsla(190, 80%, 60%, 1);*/
	background-color: hsla(190, 80%, 35%, 1);
	border-bottom: 2px solid hsla(190, 80%, 25%, 1);
}
.secondaryButton:hover {
    background-color: hsl(190 80% 45% / 1);
}
.secondaryButton:focus {
    background-color: hsla(190, 60%, 60%, 1);
}
button#tipCancel {
    background-color: white;
    border: 2px solid hsla(0, 100%, 70%, 1);
    color: hsla(0, 100%, 70%, 1);
    box-shadow: none;
}
button#tipCancel:hover {
    background-color: hsl(1 100% 95% / 1);
}
hr.dottedLine {
    border: 1px dashed hsla(190, 80%, 40%, 0.5);
    margin-top: 20px;
}

button#archiveWorry,
button#unArchiveWorry,
button#deleteWorry {
    float: initial;
    clear: both;
    display: block;
    width: 100%;
    max-width: 200px;
    margin: auto;
}
button#archiveWorry,
button#unArchiveWorry {
    margin-top: 20px;
}
button#deleteWorry {
    margin-top: 10px;
}

#editWorry {
    /*border-radius: 0px 0px 10px 10px;
    margin-top: -3px;
    font-size: 14px;
    padding: 10px 10px;
    z-index: 1;
    position: absolute;
    right: 20px;*/
    border-radius: 30px 0px 0px 30px;
    font-size: 14px;
    padding: 10px 6px 10px 11px;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 7;
    width: 64px;
    height: 44px;
}
#editWorry:active {
    /*position: absolute;*/
    /*background-color: transparent; */
    /*color: white;*/
}
/*#expandLongWorry {
    right: 80px;
}*/
.instructionText {
    /*font-size: 14px;*/
/*    font-style: italic;*/
    margin-bottom: 5px;
}
#tipListInstructionText {
    font-size: 18px;
    margin-bottom: 20px;
    /*color: white;*/
}
.advice {
	/*color: hsla(0, 100%, 70%, 1);*/
}

.oddsDescription {
    font-size: 14px;
/*    font-style: italic;*/
    /*padding-left: 0px;*/
    opacity: 0.7;
    display: block;
}

textarea {
    /*background-color: hsla(80, 50%, 80%, 1);*/
    width: 100%;
    min-height: 150px;
    /*border: 1px solid #95bf40;*/
    font-size: 14px;
    /*background-color: hsla(190, 80%, 40%, 0.3);*/
    background-color: hsla(190, 80%, 70%, 0.2);
    /*border: 1px solid var(--blue);*/
    border: none;
    padding: 10px;
    /*color: hsla(0, 100%, 70%, 1);*/
    color: var(--bluedark);
    margin-bottom: 10px;
    font-size: 18px;
    user-select:all;
}
textarea:focus {
/*	background-color: hsla(190, 100%, 40%, 0.2);*/
	border: 2px solid var(--blue);
	outline: none;
    padding: 8px;
}
::placeholder {
/*	color: hsla(190, 80%, 40%, 0.7);*/
    color: var(--bluedark);
    opacity: 0.7;
/*	font-style: italic;*/
}
#tipPageOpen0 textarea {
	/*background-color: hsla(0, 100%, 70%, 0.3);
	border: 1px solid hsla(0, 100%, 70%, 1);*/
}
#tipPageOpen0 textarea.error {
    background-color: hsla(0, 100%, 70%, 0.2);
    border: 1px solid hsla(0, 100%, 70%, 1);
}
#tipPageOpen0 textarea:focus {
	/*background-color: hsla(0, 100%, 70%, 0.2);
	border: 2px solid hsla(0, 100%, 70%, 1);*/
}

#tipPageOpen5 label:hover {
    background: hsla(190, 80%, 40%, 0.1);
    border-radius: 10px;
}

/*COPIED FROM HERE: https://www.w3schools.com/howto/howto_css_custom_checkbox.asp*/
	/* Customize the label (the container) */
	label {
	  display: block;
	  position: relative;
	  padding: 10px 5px 10px 40px;
      margin-bottom: 7px;
	  /*margin-left: 20px;*/
	  cursor: pointer;
	/*  font-size: 22px;*/
	  -webkit-user-select: none;
	  -moz-user-select: none;
	  -ms-user-select: none;
	  user-select: none;
	}
	label input {
	  position: absolute;
	  opacity: 0;
	  cursor: pointer;
	  height: 0;
	  width: 0;
	}
	/* Create a custom checkbox */
	.checkmark {
	  position: absolute;
	  top: 8px;
      left: 8px;
	  height: 25px;
	  width: 25px;
	  /*background-color: hsla(30, 20%, 90%, 1);*/
	  background-color: hsla(190, 20%, 90%, 1);
	}
	/* On mouse-over, add a grey background color */
	label:hover input ~ .checkmark {
	  background-color: hsla(190, 80%, 40%, 0.3);
	}
	/* When the checkbox is checked, add a blue background */
	label input:checked ~ .checkmark,
    .ui-checkbox-on .checkmark {
	  background-color: var(--blue);
	}
	/* Create the checkmark/indicator (hidden when not checked) */
	.checkmark:after {
	  content: "";
	  position: absolute;
	  display: none;
	}
	/* Show the checkmark when checked */
	label input:checked ~ .checkmark:after,
    .ui-checkbox-on .checkmark:after {
	  display: block;
	}
	/* Style the checkmark/indicator */
	label .checkmark:after {
	  left: 9px;
	  top: 5px;
	  width: 5px;
	  height: 10px;
	  border: solid white;
	  border-width: 0 3px 3px 0;
	  -webkit-transform: rotate(45deg);
	  -ms-transform: rotate(45deg);
	  transform: rotate(45deg);
	}

	/* Hide the browser's default radio button */
	label input {
	  position: absolute;
	  opacity: 0;
	  cursor: pointer;
	}
	/* Create a custom radio button */
	.radio {
	  position: absolute;
	  top: 8px;
      left: 8px;
	  height: 25px;
	  width: 25px;
	  /*background-color: hsla(30, 20%, 90%, 1);*/
	  background-color: hsla(190, 20%, 90%, 1);
	  border-radius: 50%;
	}
	/* On mouse-over, add a grey background color */
	label:hover input ~ .radio {
	  background-color: hsla(190, 80%, 40%, 0.3);
	}
	/* When the radio button is checked, add a blue background */
	label input:checked ~ .radio {
	  background-color: var(--blue);
	}
	/* Create the indicator (the dot/circle - hidden when not checked) */
	.radio:after {
	  content: "";
	  position: absolute;
	  display: none;
	}
	/* Show the indicator (dot/circle) when checked */
	label input:checked ~ .radio:after {
	  display: block;
	}
	/* Style the indicator (dot/circle) */
	label .radio:after {
	 	top: 9px;
		left: 9px;
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: white;
	}


/*FIX JQUERY MOBILE*/
.tipPage input {
    /*display: none;*/
}


/*END OF FIX JQUERY MOBILE*/

/*TIP DONE CHECKMARK*/


@keyframes tipCompletedAnimation {
    0%   {transform: scale(1, 1);}
    50%  {transform: scale(1.5, 1.5);}
    100% {transform: scale(1, 1);}
}
.tipCompleteCelebration {
    z-index: 11 !important;
    animation-name: tipCompletedAnimation;
    animation-duration: 0.2s;
    animation-timing-function: ease-in-out;
}

.tipComplete {
    position: absolute;
    top: 30px;
    right: 20px;
    height: 25px;
    width: 25px;
    background-color: hsl(0, 0%, 90%);
    /*background-color: hsla(190, 20%, 90%, 0.5);*/
    /*background-color: hsla(190, 80%, 70%, 1);*/
}
.tipCompleteYes:after {
    position: absolute;
    display: block;
    left: 11px;
    top: -8px;
    width: 10px;
    height: 25px;
    border: solid var(--bluedark);
    border-width: 0 4px 4px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    content: '';
    /*box-shadow: 1px 1px 0px hsla(190, 80%, 35%, 1);*/
}


/*NEED THIS TO FIX FASTCLICK.JS BLOCKING THE INPUT*/
label > * { pointer-events: none; }
/*textarea > * { pointer-events: none; }*/

label.active,
.ui-checkbox-on
/*input:checked + label*/ {
    background-color: hsla(190, 80%, 40%, 0.2);
    border-radius: 10px;
}
/*input + label {
    background-color: red;
}*/

#backToHomeButtons {
    position: fixed;
    top: 70px;
    left: 0;
    z-index: 7;
    width: 100%;
    height: 44px;
}
#buttonBackToWorryList,
#buttonBackToArchiveList {
    border-radius: 0px 30px 30px 0px !important;
    box-shadow: none;
    /*width: 36px;
    height: 41px;*/
    width: 44px;
    height: 44px;
    padding: 0;
    top: 0px;
    left: 0;
    position: absolute;
    z-index: 7;
    background: none;
    border: none;
}
#buttonBackToWorryList:after,
#buttonBackToArchiveList:after {
    position: absolute;
    display: block;
    left: 11px;
    top: 14px;
    width: 10px;
    height: 10px;
    border: solid white;
    border-width: 0 4px 4px 0;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    content: '';
}
#buttonBackToWorryList:hover,
#buttonBackToArchiveList:hover {
    background:hsla(0, 0%, 100%, 0.3);
}
#buttonBackToWorryList:hover:after,
#buttonBackToArchiveList:hover:after {
    width: 12px;
    height: 12px;
}

.footerButtons {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: hsla(190, 80%, 20%, 0.7);
    /*background-color: hsla(190, 80%, 30%, 0.9);*/
    width: 100%;
    padding: 10px 20px;
    z-index: 4;
}
/*.footerButtons button:nth-child(1){
    border-radius: 0px 30px 30px 0px;
    border-left: none;
    margin-left: -5px;
    padding-left: 25px;
}
.footerButtons button:nth-child(2){
    border-radius: 30px 0px 0px 30px;
    border-right: none;
    margin-right: -5px;
    padding-right: 25px;
}*/

/*#buttonBackToArchiveList {
    border-radius: 0px 30px 30px 0px !important;
    margin-left: -2px;
}*/

.header {
    width: 100%;
    background-color: white;
    position: fixed;
    top: 0px;
    z-index: 15;
    height: 70px;
}
#worreaseLogo {
    max-width: 260px;
    margin: 0px auto;
    position: relative;
    display: block;
}

.logo {
	/*font-family: 'Comfortaa', cursive;
    font-family: 'Lobster', cursive;
    font-family: 'Lobster Two', cursive;
    font-family: 'Annie Use Your Telescope', cursive;
    font-family: 'Kaushan Script', cursive;*/

    /*font-family: 'Pacifico', cursive;*/
    /*font-family: 'Fredericka the Great', cursive;
    font-family: 'Codystar', cursive;*/
    /*font-family: 'Love Ya Like A Sister', cursive;*/


    font-weight: normal;
    font-size: 64px;
    /*height: 74px;*/
    color: white;
    background-color: var(--blue);
    color: hsla(30, 20%, 90%, 1);
    /*text-shadow: 2px 2px 10px hsla(190, 100%, 16%, 1);*/

    /*OUTLINE OF FONT*/
    /*text-shadow: -2px -2px 0px #ffffff, 2px -2px 0px #ffffff, -2px 2px 0px #ffffff, 2px 2px 0px #ffffff;*/
    
    /*color: var(--blue);*/
    /*margin-bottom: 20px;
    line-height: 1;*/
    margin-top: 0;
    margin: 0px -20px 0px -20px;
    /*line-height: 0.7;*/
    padding: 0px 0px 0px 20px;
}

h2 {
    /*margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;*/
}

h3 {
	margin-bottom: 10px;
}
ul, ol {
    margin-top: 0px;
    margin-bottom: 20px !important;
    padding-left: 30px;
}
li {
    
}


#myWorries, #pastWorriesArchive {
	position: absolute;
	top: 0px;
    width: 100%;
    padding: 0px 20px 20px 20px;
    /*margin-bottom: 60px;*/
    /*background-color: hsla(190, 80%, 95%, 1);*/
}
#pastWorriesArchive {
    background-color: hsla(190, 80%, 95%, 1);
    min-height: 100%;
}
#openPastWorriesButton {
    /*margin-bottom: 20px;
    clear: both;*/
    margin-right: 20px;
}
.swipeleft {
    /*background-color: yellow !important;*/
    /*background-color:hsla(0, 100%, 75%, 1) !important;*/
    left: -80px;
    z-index: 2;
    animation-name: swipeLeft;
    animation-duration: 0.1s;
    animation-iteration-count: 1;
    animation-timing-function:ease-in-out;
}
@keyframes swipeLeft {
    from {left:0px;}
    to {left:-80px;}
}

.swiperight {
    /*background-color: yellow !important;*/
    left: 0px;
    animation-name: swipeRight;
    animation-duration: 0.1s;
    animation-iteration-count: 1;
    animation-timing-function:ease-in-out;
}
@keyframes swipeRight {
    from {left:-80px;}
    to {left:0px;}
}
.archiveButton {
    position: absolute;
    margin-top: -51px;
    border-radius: 30px;
    right: 20px;
    color: white;
    padding: 10px 20px 10px 45px;
    box-shadow: 0px 1px 3px hsla(0, 0%, 0%, 0.3);
    font-size: 14px;
    z-index: 1;
}
/*HAD TO ADD THIS WHEN I ADDED THE SWIPING AND WENT BACK TO OLDER JQUERY TO ADD JQUERY MOBILE*/
.ui-loader.ui-corner-all.ui-body-a.ui-loader-default {
    display: none !important;
}
/*#myWorries.close {
    opacity: 0;
    animation-name: homeClose;
    animation-duration: 0.3s;
    animation-iteration-count: 1;
    animation-timing-function:ease-in-out;
}
@keyframes homeClose {
    from {opacity:1;}
    to {opacity:0;}
}
#myWorries.open {
    opacity: 1;
    animation-name: homeOpen;
    animation-duration: 0.3s;
    animation-iteration-count: 1;
    animation-timing-function:ease-in-out;
}
@keyframes homeOpen {
    from {opacity:0;}
    to {opacity:1;}
}*/



.reportNumber {
    border: 1px solid;
    border-radius: 100%;
    width: 32px;
    height: 32px;
    display: block;
    padding: 6px 10px 10px 10px;
    float: left;
    clear: left;
    margin-bottom: 20px;
}
.reportResponse {
    float: left;
    padding-top: 7px;
    padding-left: 10px;
    width: calc(100% - 32px);
    margin-bottom: 20px;
}

.worryListEmpty {
    display: none;
    font-size: 18px;
/*    font-style: italic;*/
}

#myWorryList,
#pastWorryList {
    margin-bottom: 100px !important;
    padding: 0;
}
#tipList {
    /*margin-bottom: 100px;*/
    padding: 0;
}
#myWorriesTitle {
	color: hsla(0, 100%, 70%, 1);
    /*font-family: 'Kaushan Script', cursive;*/
    /*font-family: 'Roboto Slab', serif;*/
    margin: 40px -20px 10px -20px;
    padding: 0px 0px 0px 20px;
    font-size: 36px;
    font-weight: normal;
}

#myWorriesTitle,
#pastWorriesTitle {
    /*background-color: hsla(0, 100%, 70%, 1);
    margin: 40px -20px 10px -20px;
    padding: 0px 0px 0px 20px;
    font-size: 36px;
    font-weight: normal;
    color: #e6e6e6;
    width: 180px;*/


    margin: 40px -20px 20px -20px;
    padding: 0px 0px 0px 20px;
    font-size: 36px;
    font-weight: normal;
    width: calc(100% + 40px);
    /*background: repeating-linear-gradient(-45deg, hsla(0, 100%, 70%, 1), hsla(0, 100%, 70%, 1) 15px, transparent 15px, transparent calc( 13px * 2) );*/
    background: repeating-linear-gradient(-45deg, hsla(0, 100%, 70%, 1), hsla(0, 100%, 70%, 1) 15px, hsla(0, 100%, 70%, 0) 15px, hsla(0, 100%, 70%, 0) calc( 10px * 2) );
    position: relative;
    height: 50px;
}
#myWorriesTitle div,
#pastWorriesTitle div {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0px;
    display: block;
    height: 50px;
    /*background: linear-gradient(90deg, transparent, #e6e6e6);*/
    background: linear-gradient(90deg, hsla(0, 0%, 90%, 0), hsla(0, 0%, 100%, 1));
}
#myWorriesTitle span,
#pastWorriesTitle span {
    color: white;
    position: absolute;
    left: 0;
    top: 0px;
    display: block;
    background: linear-gradient(90deg, hsla(0, 100%, 70%, 1) 40%, hsla(0, 100%, 70%, 0) 70%);
    padding: 1px 25px;
    width: 100%;
}

/*#myWorriesTitle:after {
    content: '';
    border-top: 50px solid hsla(0, 100%, 70%, 1);
    border-right: 50px solid transparent;
    position: absolute;
    left: 180px;
}*/


#pastWorriesTitle {
    /*background: repeating-linear-gradient(-45deg, hsla(190, 80%, 40%, 1), hsla(190, 80%, 40%, 1) 15px, transparent 15px, transparent calc( 13px * 2) );*/
    /*background: repeating-linear-gradient(-45deg, hsla(190, 80%, 40%, 0.5), hsla(190, 80%, 40%, 0.5) 15px, transparent 15px, transparent calc( 13px * 2) );*/
    background: repeating-linear-gradient(-45deg, hsla(190, 80%, 40%, 0.5), hsla(190, 80%, 40%, 0.5) 8px, hsla(190, 80%, 40%, 0) 8px, hsla(190, 80%, 40%, 0) calc( 6px * 2) );
    height: 35px;
    margin-bottom: 25px;
    margin-top: 50px;
}
#pastWorriesTitle div {
    /*background: linear-gradient(90deg, transparent, hsla(190, 80%, 95%, 1));*/
    background: linear-gradient(-90deg, hsla(190, 80%, 95%, 0) 0%, hsla(190, 80%, 95%, 1) 50%);
}
#pastWorriesTitle span {
    /*background: linear-gradient(90deg, hsla(190, 80%, 40%, 1) 30%, transparent 60%);*/
    font-size: 24px;
    /*padding: 9px 25px;*/
    /*background: linear-gradient(-90deg, hsla(190, 80%, 40%, 1) 20%, transparent 40%);*/
    background: none;
    color: var(--blue);
}

#tipsTitle {
	margin: 0px -20px -10px -20px;
    padding: 0px 0px 0px 20px;
    font-size: 36px;
    font-weight: normal;
    color: var(--bluedark);
}
#myWorryList li, .myWorryListItemSelected, #pastWorryList li{
    color: white;
    /*border: 1px dashed hsla(30, 20%, 90%, 1);*/
    /*border-radius: 0px 0px 20px 0px;*/
    position: relative;
    margin-bottom: 10px;
    list-style: none;
    height: 44px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
    font-weight: normal;
    color: white;
    background-color: var(--red);
    box-shadow: 0px 1px 3px hsla(0, 0%, 0%, 0.3);
    border-bottom: 2px solid hsla(0, 100%, 60%, 1);
    border-radius: 30px;
    padding: 11px 25px 10px 25px;
    cursor: pointer;
}
#myWorryList li:active {
    background-color: hsla(0, 100%, 65%, 1);
}
#myWorryList li:hover {
    background-color: var(--redhover);
    width: calc(100% + 4px);
    height: 48px;
    top: -2px;
    left: -2px;
    margin-bottom: 6px;
}
#myWorryList li:last-child:hover {
    margin-bottom: -4px;
}
#pastWorryList li {
    /*background-color: hsla(0, 100%, 70%, 0.7);
    border-bottom: 2px solid hsla(0, 100%, 60%, 0.3);*/
    background-color: var(--blue);
    border-bottom: 2px solid hsla(190, 80%, 35%, 1);
}
#pastWorryList li:active {
    background-color: hsla(0, 100%, 65%, 1);
}
#tipList li, .tipSelected {
	/*background-color: var(--blue);
    border-radius: 0px;
    position: relative;
    margin-bottom: 10px;
    list-style: none;
    height: 52px;*/
    /*height: 41px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;*/

    /*background-color: var(--blue);
    border-radius: 0px;
    position: relative;
    margin-bottom: 30px;
    list-style: none;
    height: 44px;
    border-bottom: 2px solid hsla(190, 80%, 35%, 1);
    box-shadow: 0px 1px 3px hsla(0, 0%, 0%, 0.3);
    user-select: none;*/

    position: relative;
    margin-bottom: 15px;
    list-style: none;
    height: 84px;
    /*border-bottom: 2px solid hsla(0, 100%, 80%, 1);*/
    box-sizing: content-box;
    /* box-shadow: 0px 1px 3px hsla(0, 0%, 0%, 0.3); */
    user-select: none;
    background-color: white;
    border-radius: 10px;
    cursor: pointer;
}
#tipList li:before, .tipSelected:before {
    /*content: attr(data-tipnumber);
    border-radius: 100%;
    width: 33px;
    height: 33px;
    display: block;
    float: left;
    margin: -7px 11px 0px -6px;
    padding: 7px 0px 0px 0px;
    box-sizing: border-box;
    background-color: white;
    color: #009bb9;
    font-weight: bold;
    text-align: center;*/
}
#tipList li:active {
    /*background-color: hsla(190, 80%, 35%, 1);*/
    background-color: hsla(0, 0%, 95%, 1);
}
#tipList li:hover {
    height: 88px;
    top: -2px;
    margin-bottom: 9px;
    padding-top: 2px;
    width: calc(100% + 10px);
    left: -5px;
    box-shadow: 0px 2px 5px hsl(0deg 0% 0% / 20%);
/*    border: 2px solid var(--blue);*/
}
#tipList li:hover .tipComplete {
    top: 32px;
}
.tipSelected {
    box-shadow: 0px 2px 5px hsl(0deg 0% 0% / 20%);
}
.tipSelected.animating {

}
.tipSelected.open {
    border-radius: 10px 10px 0px 0px;
}
.tipSelected.open:after {
    content: '-';
    background-color: white;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 10px;
    color: white;
}
.tipListIcon {
    /*background-color: white;
    width: 52px;
    float: left;
    margin-right: 10px;
    left: 0px;
    padding: 5px;
    border: 2px solid var(--blue);*/

    /*background-color: white;
    width: 62px;
    float: left;
    margin-right: 10px;
    margin-left: 5px;
    padding: 5px;
    border-radius: 100%;
    margin-top: -8px;
    box-shadow: 0px 1px 3px hsla(0, 0%, 0%, 0.7);
    height: 62px;
    background-size: 44px;
    background-repeat: no-repeat;
    background-position: center;*/

    float: left;
    margin-right: 10px;
    margin-left: 5px;
    width: 84px;
    height: 84px;
    background-size: 84px;
    background-repeat: no-repeat;
}
#tip1 .tipListIcon {
	background-image: url(images/tipIcon1.png);
}
/*#tip1 .tipListIcon {
	background-image: url(images/tipIcon1.png);
}
#tip1 .tipListIcon {
	background-image: url(images/tipIcon1.png);
}
#tip1 .tipListIcon {
	background-image: url(images/tipIcon1.png);
}
#tip1 .tipListIcon {
	background-image: url(images/tipIcon1.png);
}
#tip1 .tipListIcon {
	background-image: url(images/tipIcon1.png);
}*/

.tipListText {
    /*font-family: 'Kaushan Script', cursive;*/
    /*font-family: 'Roboto Slab', serif;*/
    /*font-family: 'Lobster Two', cursive;*/
    
    /*display: block;
    font-size: 18px;
    padding-top: 10px;
    font-weight: normal;
    color: white;*/

    display: block;
    font-size: 20px;
    font-weight: normal;
    color: var(--bluedark);
    padding: 12px 50px 0px 105px;
}
.tipListTextLarge {
    display: block;
    font-size: 30px;
    line-height: 1;
    color: hsla(0, 100%, 70%, 1);
}

/*.myWorryListItemSelected:active {
    height: auto;
    white-space: initial;
}*/

/*.myWorryListItemSelected.viewFullText {
    height: auto;
    white-space: initial;
}

button.viewFullTextButton {
    width: calc(100% - 80px);
    height: 100%;
    position: absolute;
    top: 0;
    left: 36px;
    background-color: transparent;
    border: none;
    border-radius: 0px;
    padding: 0;
    display: none;
}
button.viewFullTextButton:active {
    background-color: hsla(0, 0%, 100%, 0.2);
}*/

/*ANIMATING*/
.myWorryListItemSelected {
	background-color: hsla(0, 100%, 70%, 1);
	color: white;
    /*position: absolute;*/
    position: fixed;
    /*top: -50px;*/
    /*right: 20px;*/
    /*height: 100%;*/
    /*width: calc(100% - 40px);*/
    display: none;
    /*background: hsla(0, 0%, 0%, 0.7);*/
    
}
/*@keyframes myWorryListItemSelectedOpen {
    from {margin-top:0px;}
    to {margin-top:50px;}
}*/
.myWorryListItemSelected.open {
    /*top:-50px;*/
    /*left: 0;
    width: 100%;*/
    width: calc(100% - 40px);
    /*padding: 10px 30px;*/
    display: block;
/*    left: 0px;*/
/*    width: 100%;*/
/*    max-width: 460px;*/
    /*animation-name: myWorryListItemSelectedOpen;
    animation-duration: 0.5s;
    animation-iteration-count: 1;*/
    /*animation-timing-function:ease-in-out;*/
    /*animation-delay: 0.5s;*/

}
/*@keyframes myWorryListItemSelectedClose {
    from {top:-50px;}
    to {top:-100%;}
}
.myWorryListItemSelected.close {
    top:-100%;
    animation-name: myWorryListItemSelectedClose;
    animation-duration: 0.3s;
    animation-iteration-count: 1;
    animation-timing-function:ease-in-out;
}*/


/*END OF ANIMATING*/
.myWorryListItemSelected.animating {
/*    width: 460px;*/
}
.myWorryListItemSelected.pinnedToTop {
    top: 70px;
    left: 0px;
    width: 100%;
    padding: 11px 55px 10px 55px;
    border-radius: 0px;
    height: 44px;
}
.myWorryListItemSelected.unpinnedFromTop {
    left: 20px;
    width: calc(100% - 40px);
    padding: 9px 25px 10px 25px;
    border-radius: 30px;
}

/*ANIMATING*/
.tipSelected {
    position: absolute;
    /*top: 100px;*/
    width: calc(100% - 40px);
    /*border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;*/
    /*display: none;*/
    /*background: hsla(0, 0%, 0%, 0.7);*/
    /*z-index: 7;*/
}
/*@keyframes tipSelectedOpen {
    to {top:70px;}
}
.tipSelected.open {
    display: block;
    animation-name: tipSelectedOpen;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function:ease-in-out;
}*/

/*@keyframes tipSelectedExpand {
    from {height:41px;}
    to {height:100%;}
}
.tipSelected.expand {
	height: 100%;
    animation-name: tipSelectedExpand;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function:ease-in-out;
}*/
/*END OF ANIMATING*/


#viewWorryAndTips {
    position: relative;
    margin-top: 110px;
}
#viewWorryAndTips.fixed {
    /*position: fixed;

    height: calc(100% - 40px);
    display: block;
    overflow: hidden !important;
    opacity: 0.01;*/
}
#tips {
    /*margin-top: 30px;
    border-top: 2px solid;*/
    /*position: absolute;*/
    /*top: 150px;*/
    /*right: 20px;*/
    /*height: 100%;*/
    /*width: calc(100% - 40px);*/
    display: none;
    /*background: hsla(0, 0%, 0%, 0.7);*/
    /*padding-bottom: 100px;*/
    padding: 20px 20px 30px 20px;
}
/*@keyframes allTipsOpen {
    from {opacity:0;}
    to {opacity:1;}
}
#tips.open {
    display: block;
    animation-name: allTipsOpen;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function:ease-in-out;
}*/
/*@keyframes allTipsClose {
    from {opacity:1;}
    to {opacity:0;}
}
#tips.close {
    opacity: 0;
    animation-name: allTipsClose;
    animation-duration: 0.3s;
    animation-iteration-count: 1;
    animation-timing-function:ease-in-out;
}*/



.tipPage, #tipPageOpen0 {
    position: absolute;
    right: 20px;
    width: calc(100% - 40px);
    display: none;
    /*margin-bottom: 130px !important;*/
    height: auto;
    background-color: white;
	padding: 0px 20px 20px 20px;
    margin-top: 204px;
    border-radius: 0px 0px 10px 10px;
    /*box-shadow: 0px 1px 3px hsla(0, 0%, 0%, 0.3);*/
    top: 0px;
    z-index: 2;
    /*overflow: hidden;*/
    box-shadow: 0px 2px 5px hsl(0deg 0% 0% / 20%);
}
.tipPage p, .tipPage li {
    color: var(--bluedark);
    font-size: 18px;
}
.tipPage.editWorry {
    margin-top: 30px;
}
.tipPage.newWorry {
    border-radius: 10px !important;
}

/*THIS IS HERE BECAUSE IPHONE DOESN'T RECOGNIZE MARGIN-BOTTOM ON .tipPage*/
.tipPage:after {
    content: '';
    height: 20px;
    bottom: -20px;
    width: 100%;
    position: absolute;
    left: 0;
}
#tipPageOpen0 {
    top: 110px;
    margin-top: 0px;
    width: calc(100% - 60px);
    left: 21px;
}

/*@keyframes tipOpen {
    from {height:0%;}
    to {height:calc(100% - 180px);}
}
.tipPage.open {
    animation-name: tipOpen;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function:ease-in-out;
}
@keyframes tipClose {
    from {height:calc(100% - 180px);}
    to {height:0%;}
}
.tipPage.close {
    animation-name: tipClose;
    animation-duration: 0.3s;
    animation-iteration-count: 1;
    animation-timing-function:ease-in-out;
}*/


/*END OF ANIMATING*/


.worryDateText {
	display: block;
/*	font-size: 12px;*/
    opacity: 0.7;
    margin-bottom: 5px;
/*    font-style: italic;*/
    /*text-align: right;*/
}
button#newWorry {
    /*float: right;
    font-size: 54px;
    border-radius: 100%;
    width: 64px;
    height: 64px;
    line-height: 0;
    padding-top: 6px;
    padding-left: 17px;*/
    font-size: 54px;
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 0;
    padding-top: 5px;
    padding-left: 13px;
    position: absolute;
    right: 20px;
    bottom: 30px;
    /* border: 5px solid #e6e6e6; */
    box-shadow: 0px -1px 0px hsla(0, 100%, 60%, 1) inset;
}
button#newWorry:active {
    top: initial;
    bottom: 28px;
}
/*button#deleteWorry {
    display: block;
    float: right;
}*/
.newWorry #deleteWorry, 
.newWorry .worryDateText, 
.newWorry #archiveWorry, 
.newWorry #unArchiveWorry,
.newWorry .dottedLine {
    display: none;
}
.popupOverlay {
    z-index: 8;
/*    position: absolute;*/
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 0%, 0.5);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
}
.popupBackground {
    background-color: white;
    padding: 10px 30px;
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 2px 5px hsl(0deg 0% 0% / 20%);
}
#yesDeleteButton {
    display: block;
    margin: 20px auto auto auto;
}
#noDeleteButton {
    display: block;
    margin: 20px auto 20px auto;
}

.disabled {
	opacity: 0.5;
}

.warning {
	display: none;
    color: var(--red) !important;
    font-size: 16px;
    margin-bottom: 5px;
}
#newWorryEmptyWarning {
    text-align: center;
    top: -35px;
    position: relative;
    width: 250px;
    margin: auto;
}

#animateSelected {
    padding: 0px 20px 0px 20px;
    position: absolute;
    top: 0;
/*    left: 0;*/
    width: 100%;
    /*pointer-events: none;
    bottom: 150px;*/
    z-index: 6;
}


#buttonBackToArchiveList {
    display: none;
}


#appInfo {
    /*clear: both;
    margin-top: 50px;
    float: left;*/

    padding: 10px 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: hsla(190, 80%, 20%, 0.2);
    /* background-color: hsla(190, 80%, 30%, 0.9); */
    width: 100%;
    z-index: 4;
}
.infoSection {
    padding: 20px;
    /*margin-bottom: 120px;*/
}
.disclaimer {
    margin: 30px -20px 0px -20px;
/*    font-size: 14px;*/
    background-color: hsla(0, 100%, 70%, 1);
    color: white;
    padding: 10px 20px;
}
button#aboutApp {
    margin-right: 20px;
}
#disclaimerButton {
    /* background-color: transparent; */
    /* border: 2px solid var(--blue); */
    font-size: 27px;
    position: absolute;
    width: 44px;
    height: 44px;
    line-height: 0;
    padding: 0;
/*    top: 12px;*/
    right: 0px;
}
#disclaimerButton:active {
/*    top: 14px;*/
}
#aboutData {
    clear: both;
    margin-top: 20px;
    float: left;
/*    font-size: 14px;*/
}
#aboutFont {
    clear: both;
    font-size: 12px;
    margin-top: 40px;
    float: left;
}
.donateButton {
    display: block;
    /*margin: 0px 20px 10px 30px;
    clear: left;
    float: left;*/
    margin: auto auto 10px auto;
    clear: both;
}
.thanks {
    display: none;
    float: left;
    clear: left;
    margin: auto auto 14px auto;
    text-align: center;
    padding: 10px 20px;
    width: 100%;
}





/*NEWJAN2024*/
/*html {
    width: 500px;
    position: relative;
    margin: auto;
}*/

.clamp {
    max-width: 700px;
    position: relative;
    margin: auto;
}
#myWorries, #pastWorriesArchive {
    position: absolute;
    top: 90px;
/*    width: 100%;*/
    width: calc(100% - 20px);
    margin-left: 10px;
    padding: 0px 20px 20px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 3px 5px hsl(0deg 0% 0% / 20%);
}
#pastWorriesArchive {
/*    background-color: initial;*/
}
#pastWorriesTitle div {
    background: linear-gradient(-90deg, hsla(190, 80%, 95%, 0) 0%, hsl(0 0% 100% / 1) 50%);
}

/*#myWorries, #pastWorriesArchive {
    width: 500px;
    position: relative;
    margin: auto;
}

#tips {
    width: 500px;
    position: relative;
    margin: auto;
}*/

/*#myWorries {
    max-width: 500px;
    margin: 20px auto;
    position: relative;
    border: 1px solid hsl(0 0% 80% / 1);
    background-color: white;
    box-shadow: 0px 2px 10px hsl(0deg 0% 0% / 10%);
    border-radius: 20px;
}*/
/*#myWorriesTitle div,
#pastWorriesTitle div {
    background: linear-gradient(90deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 1));
}
*/


/*#tips {
    width: 500px;
    position: relative;
    margin: auto;
}*/


/*body {
    max-width: 500px;
    position: relative;
    margin: auto;
}


#myWorries,
#pastWorriesArchive,
.tipPage,
.tipSelected,
#tips {
    max-width: 500px;
}
.tipPage {
    right: initial;
    left: 20px;
}
*/


/*END OF NEWJAN2024*/




@media (max-width: 370px) {
    .tipPage {
        top: -20px;
        padding: 10px 20px 20px 20px;
    }
    #tipList li, .tipSelected {
        height: 64px;
    }
    .tipListIcon {
        width: 64px;
        height: 64px;
        background-size: 64px;
    }
    .tipListText {
        padding: 6px 50px 0px 85px;
    }
    .tipListTextLarge {
        font-size: 24px;
    }
    .tipComplete {
        top: 20px;
    }
}