/**
 * Optimized CSS for public-specific functionality with overlay for modal.
 */

:root {
	--gmp-list-primary-color: #14375d;
	--gmp-list-secondary-color: #eef0f2;
	--gmp-list-text-color: #fff;
	--gmp-list-border-color: #c8ccd0;
	--gmp-list-hover-color: #a72700;
	--gmp-list-text-hover-color: #fff;
	--gmp-list-button-hover-color: #a72700;
	--gmp-list-disabled-color: #eef0f2;
	--gmp-list-disabled-text-color: #c8ccd0;
	--gmp-list-disabled-border-color: #c8ccd0;
	--gmp-list-disabled-hover-color: #eef0f2;
	--gmp-list-disabled-hover-text-color: #c8ccd0;
	--gmp-list-disabled-hover-border-color: #c8ccd0;
	--gmp-list-primary-btn-color:  #f47952;
	--gmp-list-button-hover-btn-color: #14375d;
}

.gmp-category-content-section {
	text-align: center;
	background-color: white;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	width: 100%;
	position: relative;
	z-index: 222;
}

.gmp-category-content-section h1 {
	font-size: 18px;
	color: #333;
	margin-bottom: 20px;
}

.gmp-goal-list-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.gmp-category-card {
	background-color: #f9f9f9;
	border-radius: 8px;
	padding: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

.gmp-category-card{
	background-size: contain;
	background-position: center right;
	background-repeat: no-repeat;
	min-height: 180px;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.gmp-category-card .banner-text,
.gmp-category-card .banner-sub-text {
	width: 100%;
	line-height: 1.3;
	margin-right: auto;
	padding: 0;
	max-width: 370px;
}

.gmp-category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.gmp-category-card img {
	width: 100%;
	max-width: 50px;
	height: 50px;
	margin-bottom: 10px;
}
.gmp-category-card p {
	font-size: 14px;
	color: #555;
	margin: 0;
}

.gmp-category-card .gmp-cat-img, .gmp-category-card .category-text{
	display: none;
}


.gmp-goal-options-container, .gmp-action-options-container {
	max-width: 650px;
	margin: auto;
}

.gmp-goal-option, .gmp-action-option {
	display: flex;
	align-items: center;
	padding: 20px 0;
	border-bottom: 1px solid #ddd;
}

.gmp-goal-option:last-child, .gmp-action-option:last-child {
	border-bottom: none;
}

.gmp-goal-option label, .gmp-action-option label {
	flex-grow: 1;
	cursor: pointer;
}

.gmp-goal-option input[type="radio"], .gmp-action-option input[type="radio"] {
	width: 28px;
	height: 28px;
}

.gmp-popup-modal-step-1,
.gmp-popup-modal-step-2,
.gmp-popup-modal-step-3,
.gmp-popup-modal-step-11,
.gmp-popup-modal-step-5,
.gmp-popup-modal-step-6 {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 700px;
	height: auto;
	background: rgba(0, 0, 0, 0.8);
	z-index: 22222;
	border-radius: 10px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	margin-top: 2%;
}

.gmp-modal-header-step-1,
.gmp-modal-header-step-2,
.gmp-modal-header-step-3,
.gmp-modal-header-step-11,
.gmp-modal-header-step-5,
.gmp-modal-header-step-6 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 25px;
	background-color: var(--gmp-list-primary-color);
	color: white;
	text-align: center;
	width: 100%;
	border-radius: 0px 0px 25px 25px;
	position: relative;

}
.gmp-action-option:first-child {
	margin-top: 30px;
	border-top: 1px solid #ddd;
}


.gmp-popup-modal-step-1 .gmp-modal-content-step-1,
.gmp-popup-modal-step-2 .gmp-modal-content-step-2,
.gmp-popup-modal-step-3 .gmp-modal-content-step-3,
.gmp-popup-modal-step-11 .gmp-modal-content-step-11,
.gmp-popup-modal-step-5 .gmp-modal-content-step-5,
.gmp-popup-modal-step-6 .gmp-modal-content-step-6 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gmp-modal-close-btn-step-1,
.gmp-modal-close-btn-step-2,
.gmp-modal-close-btn-step-3,
.gmp-modal-close-btn-step-11,
.gmp-modal-close-btn-step-5,
.gmp-modal-close-btn-step-6 {
	background: var(--gmp-list-secondary-color);
}


.gmp-modal-close-btn-step-1:hover,
.gmp-modal-close-btn-step-2:hover,
.gmp-modal-close-btn-step-3:hover,
.gmp-modal-close-btn-step-11:hover,
.gmp-modal-close-btn-step-5:hover,
.gmp-modal-close-btn-step-6:hover {
	background: var(--gmp-list-hover-color);
	color: var(--gmp-list-text-hover-color);
}

/* .gmp-body-content-step-1,
.gmp-body-content-step-2,
.gmp-body-content-step-3 {
	padding: 25px 0px;
	background: #fff;
	border-radius: 10px;
} */

.gmp-body-content-step-1,
.gmp-body-content-step-2,
.gmp-body-content-step-3,
.gmp-body-content-step-11,
.gmp-body-content-step-5,
.gmp-body-content-step-6 {
	padding: 25px 15px;
	background: #fff;
	border-radius: 10px;
}

.gmp-popup-modal-step-1 .gmp-body-content-step-1,
.gmp-popup-modal-step-2 .gmp-body-content-step-2,
.gmp-popup-modal-step-3 .gmp-body-content-step-3,
.gmp-popup-modal-step-11 .gmp-body-content-step-11,
.gmp-popup-modal-step-5 .gmp-body-content-step-5{
	overflow-x: hidden;
	overflow-y: scroll;
	height: calc(100vh - 35vh);
	-webkit-overflow-scrolling: touch;
	margin-top: 5px;
}


.gmp-popup-modal-step-6 .gmp-note-view-all-box{
	overflow-x: hidden;
	overflow-y: scroll;
	height: calc(100vh - 70vh);
	-webkit-overflow-scrolling: touch;
	margin-top: 25px;
}

div#gmp-body-content-step-6 .btn-view-all {
	padding: 15px 5px;
	display: flex;
	gap: 5px;
	align-content: center;
	align-items: flex-end;
}

div#gmp-popup-modal-step-6 .btn-view-all {
	padding: 0px 20px;
	background: #fff;
	border-radius: 10px;
	margin-bottom: 15px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
div#gmp-popup-modal-step-6 .btn-view-all span.dashicons.dashicons-arrow-right-alt {
	padding-left: 5px;
}


div#gmp-popup-modal-step-6 .gmp-note-view-all-box {
	padding: 0px 20px;
	background: #fff;
	border-radius: 10px;
	margin: 0;
}

div#gmp-popup-modal-step-6 .gmp-note-repeater-box {
	padding: 15px;
	margin: 0px;
	margin-top: 30px;
}




.gmp-container-step-3 .gmp-section-box-2 .gmp-some-action-box .type-something-box .list-item-sub-action-steps-box {
	/* max-height: 115px;
	overflow-x: hidden;
	overflow-y: scroll;
	padding-right: 10px;
	margin-bottom: 10px;
	-webkit-overflow-scrolling: touch; */
}

.gmp-popup-modal-step-1 .gmp-body-content-step-1::-webkit-scrollbar,
.gmp-popup-modal-step-2 .gmp-body-content-step-2::-webkit-scrollbar,
.gmp-popup-modal-step-3 .gmp-body-content-step-3::-webkit-scrollbar,
.gmp-popup-modal-step-5 .gmp-body-content-step-5::-webkit-scrollbar,
.gmp-popup-modal-step-11 .gmp-body-content-step-11::-webkit-scrollbar,
.gmp-popup-modal-step-6 .gmp-note-view-all-box::-webkit-scrollbar,
.gmp-popup-modal-step-4 #gmp-body-content-step-main-css::-webkit-scrollbar,
.gmp-popup-modal-step-9 #gmp-body-content-step-main-css::-webkit-scrollbar,
.gmp-popup-modal-step-8 #gmp-body-content-step-main-css::-webkit-scrollbar {
	height: 5p;
	width: 5px;
}
.gmp-popup-modal-step-1 .gmp-body-content-step-1::-webkit-scrollbar-thumb,
.gmp-popup-modal-step-2 .gmp-body-content-step-2::-webkit-scrollbar-thumb,
.gmp-popup-modal-step-3 .gmp-body-content-step-3::-webkit-scrollbar-thumb,
.gmp-popup-modal-step-11 .gmp-body-content-step-11::-webkit-scrollbar-thumb,
.gmp-popup-modal-step-5 .gmp-body-content-step-5::-webkit-scrollbar-thumb,
.gmp-popup-modal-step-6 .gmp-note-view-all-box::-webkit-scrollbar-thumb,
.gmp-popup-modal-step-4 #gmp-body-content-step-main-css::-webkit-scrollbar-thumb,
.gmp-popup-modal-step-9 #gmp-body-content-step-main-css::-webkit-scrollbar-thumb,
.gmp-popup-modal-step-8 #gmp-body-content-step-main-css::-webkit-scrollbar-thumb {
	background-color: var(--gmp-list-primary-color);
	border-radius: 5px;
	cursor: pointer;
}
.gmp-popup-modal-step-1 .gmp-body-content-step-1::-webkit-scrollbar-track,
.gmp-popup-modal-step-2 .gmp-body-content-step-2::-webkit-scrollbar-track,
.gmp-popup-modal-step-3 .gmp-body-content-step-3::-webkit-scrollbar-track,
.gmp-popup-modal-step-11 .gmp-body-content-step-11::-webkit-scrollbar-track,
.gmp-popup-modal-step-5 .gmp-body-content-step-5::-webkit-scrollbar-track,
.gmp-popup-modal-step-6 .gmp-note-view-all-box::-webkit-scrollbar-track,
.gmp-popup-modal-step-4 #gmp-body-content-step-main-css::-webkit-scrollbar-track,
.gmp-popup-modal-step-9 #gmp-body-content-step-main-css::-webkit-scrollbar-track,
.gmp-popup-modal-step-8 #gmp-body-content-step-main-css::-webkit-scrollbar-track {
	background-color: #fff;
	border-radius: 5px;
}

.gmp-popup-modal-open-step-1,
.gmp-popup-modal-open-step-2,
.gmp-popup-modal-open-step-3,
.gmp-popup-modal-open-step-11,
.gmp-popup-modal-open-step-5,
.gmp-popup-modal-open-step-6 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 22221; /* Lower than the modal to ensure it's behind */
}

h2#gmp-modal-title-step-1,
h2#gmp-modal-title-step-2,
h2#gmp-modal-title-step-3,
h2#gmp-modal-title-step-11,
h2#gmp-modal-title-step-5,
h2#gmp-modal-title-step-6 {
	font-size: 20px;
	margin: 0;
	color: var(--gmp-list-text-color);
	width: 100%;
	text-align: center;
	padding: 0 10px;
}

.gmp-modal-close-btn-step-1,
.gmp-modal-close-btn-step-2,
.gmp-modal-close-btn-step-3,
.gmp-modal-close-btn-step-11,
.gmp-modal-close-btn-step-5,
.gmp-modal-close-btn-step-6 {
	background: var(--gmp-list-secondary-color);
	padding: 5px;
	margin: 0;
	color: #000;
	cursor: pointer;
}

button.gmp-modal-next-btn-step-1,
button.gmp-modal-next-btn-step-2,
button.gmp-modal-next-btn-step-3,
button.gmp-modal-next-btn-step-11,
button.gmp-modal-next-btn-step-5,
button.gmp-modal-next-btn-step-6 {
	width: 100%;
}

button.gmp-modal-next-btn-step-1.disabled-btn,
button.gmp-modal-next-btn-step-2.disabled-btn,
button.gmp-modal-next-btn-step-3.disabled-btn,
button.gmp-modal-next-btn-step-11.disabled-btn,
button.gmp-modal-next-btn-step-5.disabled-btn,
button.gmp-modal-next-btn-step-6.disabled-btn {
	background: var(--gmp-list-disabled-color);
	color: var(--gmp-list-disabled-text-color);
	border: 1px solid var(--gmp-list-disabled-border-color);
}

button.gmp-modal-next-btn-step-1.disabled-btn:hover,
button.gmp-modal-next-btn-step-2.disabled-btn:hover,
button.gmp-modal-next-btn-step-3.disabled-btn:hover,
button.gmp-modal-next-btn-step-11.disabled-btn:hover,
button.gmp-modal-next-btn-step-5.disabled-btn:hover,
button.gmp-modal-next-btn-step-6.disabled-btn:hover {
	background: var(--gmp-list-disabled-hover-color);
	color: var(--gmp-list-disabled-hover-text-color);
	border: 1px solid var(--gmp-list-disabled-hover-border-color);
}

.gmp-modal-footer-step-1,
.gmp-modal-footer-step-2,
.gmp-modal-footer-step-3,
.gmp-modal-footer-step-11,
.gmp-modal-footer-step-5 {
	padding: 25px;
}

.gmp-modal-footer-step-6 {
	padding: 0px 15px;
	margin-bottom: 15px;
	display: flex;
	justify-content: space-between;
}


.gmp-modal-footer-step-6 button.gmp-modal-next-btn-step-6.disabled-btn {
	background: var(--gmp-list-disabled-color);
	color: var(--gmp-list-disabled-text-color);
	border: 1px solid var(--gmp-list-disabled-border-color);
	width: 15%;
}

.gmp-modal-footer-step-6 button.gmp-modal-next-btn-step-6{
	width: 15%;
}

.gmp-modal-header-step-1::before,
.gmp-modal-header-step-2::before,
.gmp-modal-header-step-3::before,
.gmp-modal-header-step-11::before,
.gmp-modal-header-step-5::before,
.gmp-modal-header-step-6::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 55px;
	background: var(--gmp-list-primary-color);
	clip-path: ellipse(57% 55px at center top);
	top: 56px;
}


button.gmp-modal-next-btn-step-1,
button.gmp-modal-next-btn-step-2,
button.gmp-modal-next-btn-step-3,
button.gmp-modal-next-btn-step-11,
button.gmp-modal-next-btn-step-5,
button.gmp-modal-next-btn-step-6 {
	background: var(--gmp-list-primary-btn-color);
	color: var(--gmp-list-text-color);
	border-color: currentColor;
}

button.gmp-modal-next-btn-step-1:hover,
button.gmp-modal-next-btn-step-2:hover,
button.gmp-modal-next-btn-step-3:hover,
button.gmp-modal-next-btn-step-11:hover,
button.gmp-modal-next-btn-step-5:hover,
button.gmp-modal-next-btn-step-6:hover {
	background: var(--gmp-list-button-hover-btn-color);
	color: var(--gmp-list-text-color);
	border-color: currentColor;
}

.gmp-modal-footer-step-6 button.gmp-complete-goal-btn,
.gmp-modal-footer-step-6 button.gmp-delete-goal-btn {
	background: transparent;
}

.gmp-modal-footer-step-6 button.gmp-complete-goal-btn:hover,
.gmp-modal-footer-step-6 button.gmp-delete-goal-btn:hover {
	background: var(--gmp-list-button-hover-btn-color);
	border-color: currentColor;
}

.gmp-goal-option-radio:checked,
.gmp-action-option-radio:checked {
	accent-color: var(--gmp-list-primary-color);
}

.action-own-container {margin-top: 15px;}

textarea.gmp-action-own-textarea {
	width: 100%;
	border: 1px solid var(--gmp-list-primary-color);
}

.gmp-left-arrow {
	cursor: pointer;
}
/* div#gmp-body-content-step-3 {
	margin: 25px;
} */

.gmp-body-content-step-3 {
	margin: 10px 0 0;
}

h3.gmp-goal-title-step-3 {
	text-align: center;
	margin: 0;
	font-weight: 100;
}

button.gmp-common-button-css, button.gmp-common-button-css:hover {
	background: transparent;
	color: #14375d;
	border-radius: 9px;
	padding: 5px 6px;
	margin-top: 15px;
}

span.dashicons.dashicons-edit, span.dashicons.dashicons-edit:hover {
	color: #14375d;
	border-radius: 5px;
}


.gmp-action-title-step-3 {
	display: block;
	width: 90%;
	margin: 0 auto;
	text-align: center;
}
.gmp-action-title-step-3.is-readonly .btn-save { display: none; }
.gmp-action-title-step-3.is-readonly input[disabled],
.gmp-action-title-step-3.is-readonly textarea[disabled] {
	cursor: text;
	background-color: #fff;
	border-color: transparent;
	outline-color: transparent;
	box-shadow: none;
}
.gmp-action-title-step-3.is-editing .btn-edit { display: none; }
textarea#gmp-action-title {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	opacity: 1;
	font-size: 22px;
	font-weight: 600;
	overflow: hidden;
}

.gmp-left-step-2-arrow,.gmp-step-3-arrow {
	cursor: pointer;
}


/* .gmp-section-box-1 {
	border-bottom: 1px solid #dadada;
	padding-bottom: 20px;
} */

.gmp-section-box-1 {
	border-bottom: 1px solid #dadada;
	padding-bottom: 20px;
	padding-top: 15px;
}

.gmp-section-box-2 .gmp-week-day-count-box {
	width: 100%;
	max-width: 540px;
	padding-top: 25px;
}


.gmp-section-box-2 .checkbox-container {
	display: flex;
	gap: 20px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.gmp-section-box-2 .checkbox-container label {
	margin: 0;
}

.gmp-section-box-2 .checkbox-container .checkbox-label {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid #dadada;
	border-radius: 50%;
	cursor: pointer;
	background-color: #F5F5F5;
	transition: 0.3s;
	color: #707070;
	font-size: 12px;
}

.gmp-section-box-2 .checkbox-container  .checkbox-label:hover {
	border-color: #000;
}
.gmp-section-box-2 .checkbox-container .checkbox-input {
	visibility: hidden;
	width: 0 !important;
	height: 0 !important;
	margin: 0 !important;
	min-width: 0 !important;
	line-height: 0;
	display: none;
}

.gmp-section-box-2 .checkbox-input:checked + .checkbox-label {
	color: var(--gmp-list-text-color);
	border-color: var(--gmp-list-primary-color);
	background: var(--gmp-list-primary-color) 0% 0% no-repeat padding-box;
}

.gmp-section-box-2 .checkbox-container-day-type {
	display: flex;
	gap: 20px;
	margin-top: 20px;
}

.gmp-section-box-2 .checkbox-container-day-type .checkbox-label {
	width: max-content;
	padding: 7px 15px;
	font-size: 12px;
	background: var(--gmp-list-secondary-color) 0% 0% no-repeat padding-box;
	border-radius: 5px;
	font-weight: 400;
}

.gmp-section-box-2 .checkbox-container-day-type .checkbox-input:checked + .checkbox-label {
	letter-spacing: 0px;
	font-weight: 600;
	color: var(--gmp-list-primary-color);
	border-color: var(--gmp-list-primary-color);
	background: var(--gmp-list-secondary-color) 0% 0% no-repeat padding-box;
}

.gmp-section-box-2 .checkbox-container label {
	margin: 0;
}

.gmp-add-reminder-box {
	border-bottom: 1px solid #dadada;
	padding-bottom: 20px;
}
.gmp-section-box-2 .notification-card-switch {
	padding-top: 15px;
}
.gmp-section-box-2 .notification-card-switch .form-group {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.gmp-body-content-step-3 .toggle-switch-gamplify-list,
.gmp-body-content-step-11 .toggle-switch-gamplify-list,
.gmp-body-content-step-5 .toggle-switch-gamplify-list {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 20px;
	margin-right: 5px;
	margin-left: 0px;
	margin-bottom: 0px;
}
.gmp-body-content-step-3 .toggle-switch-gamplify-list .gamplify-list-checkbox,
.gmp-body-content-step-11 .toggle-switch-gamplify-list .gamplify-list-checkbox,
.gmp-body-content-step-5 .toggle-switch-gamplify-list .gamplify-list-checkbox {
	opacity: 0;
	width: 0;
	height: 0;
}
.gmp-body-content-step-3 .gamplify-list-slider,
.gmp-body-content-step-11 .gamplify-list-slider,
.gmp-body-content-step-5 .gamplify-list-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	transition: .4s;
	border-radius: 20px;
	border: 1px solid #707070;
}
.gmp-body-content-step-3 .gamplify-list-slider:before,
.gmp-body-content-step-11 .gamplify-list-slider:before,
.gmp-body-content-step-5 .gamplify-list-slider:before {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	left: 1px;
	bottom: 1px;
	background-color: #6F7893;
	transition: .4s;
	border-radius: 50%;
}
.gmp-body-content-step-3 .gamplify-list-checkbox:checked + .gamplify-list-slider,
.gmp-body-content-step-11 .gamplify-list-checkbox:checked + .gamplify-list-slider,
.gmp-body-content-step-5 .gamplify-list-checkbox:checked + .gamplify-list-slider {
	background-color: var(--gmp-list-primary-color);
	border-color: var(--gmp-list-primary-color);
}
.gmp-body-content-step-3 .gamplify-list-checkbox:checked + .gamplify-list-slider:before,
.gmp-body-content-step-11 .gamplify-list-checkbox:checked + .gamplify-list-slider:before,
.gmp-body-content-step-5 .gamplify-list-checkbox:checked + .gamplify-list-slider:before {
	transform: translateX(20px);
	background-color: #fff;
}


.gmp-section-box-2 .popup {
	display: none;
	position: fixed;
	top: auto;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	/* justify-content: center;
	align-items: center; */
	justify-content: end;
	align-items: end;
	z-index: 999;
	margin: 0 auto;
}

.gmp-section-box-2 .popup-content {
	background: #fff;
	padding: 20px;
	border-radius: 8px 8px 0 0;
	width: 100%;
	transform: translateY(100%);
	transition: transform 0.5s ease-in-out;
	margin: 0 auto;
}

/* .gmp-section-box-2 .popup.show .popup-content {
	transform: translateY(0);
} */

.gmp-section-box-2 .popup.show .popup-content {
	/* transform: translateY(100px); */
	transform: translateY(-10px);
}

.gmp-section-box-2 #popup2 {
	z-index: 333333;
}

.gmp-section-box-2 .gmp-some-action-box {
	margin-top: 15px;
}
.gmp-section-box-2 .type-something-box h3 {
	text-transform: uppercase;
	font-size: 19px;
	margin: 8px 0px;
}
.gmp-section-box-2 .type-something-box p {
	margin: 10px 0px 20px 0px;
}

.gmp-section-box-2 input.sub-action-steps-input.input-plus-css {
	width: 100%;
	border: 2px solid var(--gmp-list-primary-color);
}

.gmp-some-action-box {
	padding-top: 10px;
}

.gmp-some-action-box h2 {
	text-transform: uppercase;
	margin: 10px 0px;
}
.gmp-some-action-box p {
	margin: 10px 0px;
}

.gmp-some-action-box input.input-plus-css {
	width: 100%;
	margin-bottom: 20px;
	border: 2px solid #14375d;
}


.popup-content-inner {
	display: flex;
	justify-content: flex-end;
}
.popup-content-inner button.close-popup {
	padding: 8px;
	background: var(--gmp-list-primary-color);
	border: 1px solid var(--gmp-list-primary-color);
}


#popup2 .switch_group_col {
	display: flex;
	gap: 10px;
}

#popup2 .gamplify-list-cust-heading {
	margin-bottom: 0;
	line-height: 1.5;
}

#popup2 .switch_group_col .form-group {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

#popup2 .notification-cart-content-box {
	margin: 20px 10px;
}
#popup2 .week-day-col-css {
	width: 100%;
	max-width: 100%;
}

#popup2 div#week_day_name {padding: 15px 0px;}
#popup2  .timezone-content-box {
	padding: 10px 0px;
	display: grid;
}

#popup2 .timezone-content-box label {
	padding-bottom: 10px;
}
#popup2 input#timeInput {
	width: 100%;
}


#popup2  .time-zone-col {
	position: relative;
}

#popup2  .time-picker {
	display: none;
	background: #f5f5f5;
	width: 100%;
	max-width: 250px;
	padding: 15px;
	border: 1px solid #f5f5f5;
	border-radius: 4px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	align-items: center;
	justify-content: space-between;
	position: absolute;
	left: auto;
	top: auto;
	right: 16px;
	z-index: 1;
}
#popup2  .tp-col input.tp-input {
	width: 50%;
}
#popup2  .tp-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

#popup2  .tp-input {
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 4px;
	width: 30px;
	text-align: center;
	font-size: 14px;
}

#popup2  .tp-arrow {
	cursor: pointer;
	width: 20px;
	display: block;
	border-radius: 3px;
}
#popup2  .tp-arrow:hover {
	background-color: #000;
	color: #fff;
}
#popup2  .tp-am-pm {
	cursor: pointer;
	padding: 4px 8px;
	border-radius: 4px;
	border: 1px solid #707070;
}

#popup2  .tp-am-pm:hover {
	background: #000;
	color: #fff;
}

#popup2 button.gmp-save-reminder.disabled-btn {
	background: var(--gmp-list-disabled-color);
	color: var(--gmp-list-disabled-text-color);
	border: 1px solid var(--gmp-list-disabled-border-color);
}
button.gmp-save-reminder {
	width: 100%;
	margin-top: 30px;
	background: var(--gmp-list-primary-color);
	color: var(--gmp-list-text-color);
}
button.gmp-save-reminder:hover {
	background: var(--gmp-list-button-hover-color);
	color: var(--gmp-list-text-color);
}



.gmp-common-user-goal-list-box .header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}
.gmp-common-user-goal-list-box .header h2 {
	margin: 0;
	font-size: 1.5rem;
	line-height: 32px;
	font-weight: 700;
}
.gmp-common-user-goal-list-box .toggle-container {
	display: flex;
	align-items: center;
	gap: 10px;
}

/* .gmp-common-user-goal-list-box .switch {
	position: relative;
	display: inline-block;
	width: 34px;
	height: 20px;
	margin-top: 8px;
} */

.gmp-common-user-goal-list-box .switch {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 22px;
	margin-top: 8px;
}

.gmp-common-user-goal-list-box .switch input {
	display: none;
}

.gmp-common-user-goal-list-box .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	border-radius: 20px;
	transition: 0.4s;
}

.gmp-common-user-goal-list-box .slider:before {
	position: absolute;
	content: "";
	height: 14px;
	width: 14px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	border-radius: 50%;
	transition: 0.4s;
	top: 4px;
}

.gmp-common-user-goal-list-box input:checked + .slider {
	background-color: var(--gmp-list-button-hover-btn-color);
}

/* .gmp-common-user-goal-list-box input:checked + .slider:before {
	transform: translateX(14px);
} */

.gmp-common-user-goal-list-box input:checked + .slider:before {
	transform: translateX(20px);
}

.gmp-common-user-goal-list-box .goal-cards {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
}

.gmp-common-user-goal-list-box .card {
	background-color: #fafafa;
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	flex: 1 1 calc(33.33% - 15px);
	max-width: calc(33.33% - 15px);
	display: flex;
	flex-direction: column;
	border-left: 5px solid #14375d;;
	transition: 0.3s all;
}

.gmp-common-user-goal-list-box .card-icon {
	width: 40px;
	height: 40px;
}

.gmp-common-user-goal-list-box .card-content h3 {
	font-size: 16px;
	margin: 0;
}

.gmp-common-user-goal-list-box .card-content p {
	font-size: 14px;
	color: #666;
	margin: 1px 0px;
	min-height: 40px;
	line-height: 1.3;
	font-weight: bold;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	cursor: pointer;
}

.gmp-common-user-goal-list-box .card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}


.gmp-common-user-goal-list-box .status-badge {
	display: inline-flex;
	align-items: center;
	font-family: Arial, sans-serif;
	font-size: 14px;
	color: #4a4a4a;
	background-color: #122b4603;
	border-radius: 20px;
	padding: 5px 10px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	white-space: nowrap;
	width: max-content;
}

.gmp-common-user-goal-list-box .status-badge .icon {
	width: 16px;
	height: 16px;
	margin-right: 8px;
}

.gmp-common-user-goal-list-box .status-badge .icon svg {
	fill: #d35400; /* Orange color */
}
.gmp-common-user-goal-list-box .status-badge .icon{
	display: flex;
	align-items: center;
	justify-content: center;
}
.gmp-goal-left-section {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 15px;
	align-items: center;
}
.gmp-inner-left-content {
	display: flex;
	gap: 10px;
	align-items: center;
	width: 70%;
}
.gmp-inner-left-content h5 {
	margin: 0;
}
.gmp-inner-left-content .heading {
	font-size: 16px;
	line-height: 21px;
	font-weight: 500;
}
.gmp-common-user-goal-list-box .status-badge
.count_step {
	font-size: 14px;
	color: #4a4a4a;
}
/* .on-going-css span {
	width: 25%;
	text-align: center;
	background: #fce3a080;
	border-radius: 10px;
	border: 2px solid;
	font-size: 12px;
	font-weight: 500;
} */

.on-going-css span {
	width: 100%;
	text-align: center;
	background: #fce3a080;
	border-radius: 10px;
	border: 2px solid;
	font-size: 12px;
	font-weight: 500;
	max-width: 120px;
		padding: 5px 15px;
}

.days-left-css span {
	width: 100%;
	text-align: center;
	background: #4d5c6d;
	border-radius: 10px;
	border: 2px solid;
	font-size: 12px;
	font-weight: 500;
	color: #fff;
	max-width: 85px;
		padding: 5px 15px;
}

.gmp-popup-modal-step-4,
.gmp-popup-modal-step-9,
.gmp-popup-modal-step-8 {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 700px;
	height: auto;
	background: rgba(0, 0, 0, 0.8);
	z-index: 22222;
	border-radius: 10px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	margin-top: 2%;
}
.gmp-modal-header-step-4,
.gmp-modal-header-step-9,
.gmp-modal-header-step-8 {
	display: flex;
		justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 20px 22px 25px 25px;
	background-color: var(--gmp-list-primary-color);
	color: white;
	text-align: center;
	width: 100%;
	position: relative;
}
.gmp-modal-header-step-4:before,
.gmp-modal-header-step-9:before,
.gmp-modal-header-step-8:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 55px;
	background: var(--gmp-list-primary-color);
	clip-path: ellipse(57% 55px at center top);
	top: 63px;
	z-index: 22;
}
.current-goals button.gmp-btn-view-goal {
	background: transparent;
	color: var(--gmp-list-primary-btn-color);
	border-color: var(--gmp-list-primary-btn-color);
}

.gmp-popup-modal-step-4 .gmp-modal-content-step-4,
.gmp-popup-modal-step-9 .gmp-modal-content-step-9,
.gmp-popup-modal-step-8 .gmp-modal-content-step-8 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.gmp-modal-close-btn-step-4,
.gmp-modal-close-btn-step-9,
.gmp-modal-close-btn-step-8 {
	background: var(--gmp-list-secondary-color);
}
.gmp-modal-close-btn-step-4:hover,
.gmp-modal-close-btn-step-9:hover,
.gmp-modal-close-btn-step-8:hover {
	background: var(--gmp-list-hover-color);
	color: var(--gmp-list-text-hover-color);
}
.gmp-body-content-step-4,
.gmp-body-content-step-9,
.gmp-body-content-step-8 {
	padding: 35px 25px;
	background: #fff;
	border-radius: 10px;
	padding-bottom: 10px;
}

.gmp-popup-modal-open-step-4,
.gmp-popup-modal-open-step-9,
.gmp-popup-modal-open-step-8 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 22221; /* Lower than the modal to ensure it's behind */
}

h2#gmp-modal-title-step-4,
h2#gmp-modal-title-step-9,
h2#gmp-modal-title-step-8 {
	font-size: 20px;
	margin: 0;
	color: #fff;
	width: 90%;
	text-align: center;
	line-height: initial;
	font-weight: 700;
}

h2#gmp-modal-title-step-9{
	margin: 0 auto;
	width: 100%;

}
.gmp-left-side-header {
		display: flex;
	gap: 15px;
	align-items: center;
		width: 100%;
}

h4#gmp-title {
	margin: 0;
	padding: 0;
	margin-bottom: 15px;
}
.note-content button, .note-content button:hover {
	border-radius: 5px;
	padding: 10px;
	background: var(--gmp-list-primary-color);
	color: var(--gmp-list-text-color);
	font-size: 11px;
}


.gmp-modal-close-btn-step-4,
.gmp-modal-close-btn-step-9,
.gmp-modal-close-btn-step-8 {
	background: var(--gmp-list-secondary-color);
	padding: 5px;
	margin: 0;
	color: #000;
	cursor: pointer;
}
button.gmp-modal-next-btn-step-4.disabled-btn,
button.gmp-modal-next-btn-step-8.disabled-btn {
	background: var(--gmp-list-disabled-color);
	color: var(--gmp-list-disabled-text-color);
	border: 1px solid var(--gmp-list-disabled-border-color);
}

button.gmp-modal-next-btn-step-4.disabled-btn:hover,
button.gmp-modal-next-btn-step-8.disabled-btn:hover {
	background: var(--gmp-list-disabled-hover-color);
	color: var(--gmp-list-disabled-hover-text-color);
	border: 1px solid var(--gmp-list-disabled-hover-border-color);
}
.gmp-modal-footer-step-4,
.gmp-modal-footer-step-8 {
	padding: 15px 0px;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

button.gmp-modal-next-btn-step-4,
button.gmp-modal-next-btn-step-8 {
	background: var(--gmp-list-primary-color);
	color: var(--gmp-list-text-color);
}

button.gmp-modal-next-btn-step-4:hover,
button.gmp-modal-next-btn-step-8:hover {
	background: var(--gmp-list-button-hover-color);
	color: var(--gmp-list-text-color);
}

img.cat-card-icon {
	width: 40px;
}

.gmp-body-content-step-4 .round,
.gmp-body-content-step-6 .round,
.gmp-body-content-step-8 .round {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
}

.gmp-body-content-step-4 .round label,
.gmp-body-content-step-6 .round label,
.gmp-body-content-step-8 .round label {
	background-color: #fff;
	border: 7px solid #dadada;
	border-radius: 50%;
	cursor: pointer;
	height: 45px;
	width: 45px;
	position: relative;
}

.gmp-body-content-step-4 .round label:after,
.gmp-body-content-step-6 .round label:after,
.gmp-body-content-step-8 .round label:after {
	border: 4px solid #fff;
	border-top: none;
	border-right: none;
	content: "";
	height: 10px;
	left: 8px;
	opacity: 0;
	position: absolute;
	top: 9px;
	transform: rotate(-45deg);
	width: 18px;
}

.gmp-body-content-step-4 .round input[type="checkbox"],
.gmp-body-content-step-6 .round input[type="checkbox"],
.gmp-body-content-step-8 .round input[type="checkbox"] {
	visibility: hidden;
}

.gmp-body-content-step-4 .round input[type="checkbox"]:checked + label,
.gmp-body-content-step-6 .round input[type="checkbox"]:checked + label,
.gmp-body-content-step-8 .round input[type="checkbox"]:checked + label {
	background-color: #4d5c6d;
	border-color: #4d5c6d;
}

.gmp-body-content-step-4 .round input[type="checkbox"]:checked + label:after,
.gmp-body-content-step-6 .round input[type="checkbox"]:checked + label:after,
.gmp-body-content-step-8 .round input[type="checkbox"]:checked + label:after {
	opacity: 1;
}


.gmp-body-content-step-4 .round span,
.gmp-body-content-step-6 .round span,
.gmp-body-content-step-8 .round span {
	font-size: 16px;
	color: #333;
}
.gmp-body-content-step-4 .round,
.gmp-body-content-step-6 .round,
.gmp-body-content-step-8 .round {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1px;
	flex-direction: column;
}

.gmp-body-content-step-4 .checkbox-container-css,
.gmp-body-content-step-6 .checkbox-container-css,
.gmp-body-content-step-8 .checkbox-container-css {
	display: flex;
	gap: 20px;
	align-items: center;
	flex-wrap: wrap;
}

.gmp-body-content-step-4 div#todays-note-section,
.gmp-body-content-step-8 div#todays-note-section {
	padding-left: 5px;
}

.gmp-note-textarea-box {
	margin: 10px 0px;
}


textarea.gmp-note-textarea,
textarea.gmp-self-note-textarea {
	width: 100%;
	margin-top: 10px;
}

textarea.gmp-self-note-textarea {
	width: 100%;
	margin-top: 10px;
}


.repeater-title span {
	font-weight: 500;
}

.repeater-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
}


.gmp-note-repeater-box {
	background: #f8f8f8;
	padding: 15px;
	border-radius: 10px;
	margin: 10px 0px;
		border: 1px solid #14375d12;
}
button.remove-note-btn, button.remove-note-btn:hover,
button.remove-self-note-btn, button.remove-self-note-btn:hover {
	background: var(--gmp-list-primary-color);
	padding: 5px;
	margin: 0;
	color: #ffffff;
	cursor: pointer;
	border: 1px solid var(--gmp-list-primary-color);
}

.note-content-inner {
	display: flex;
	justify-content: space-between;
}

.note-content-button button {
		border-radius: 5px;
	padding: 10px;
	background: transparent;
	color: #000;
	font-size: 11px;
	border: 1px solid var(--gmp-list-primary-color);

}
.note-content-button button:hover{
		transform: translateY(-5px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
		background: var(--gmp-list-primary-color);
	color: var(--gmp-list-text-color);
}

.gmp-note-main-box,
.gmp-self-note-main-box {
	background: #f8f8f8;
	padding: 15px;
	margin: 10px 0px;
	border-radius: 15px;
}

.gmp-current-users-goal-popup .btn-view-all,
.gmp-popup-modal-step-8 a.btn-self-view-all {
	padding: 15px 30px;
	display: flex;
	gap: 5px;
	align-content: center;
	align-items: center;
}


#gmp-popup-modal-step-4 .action-content-box,
#gmp-popup-modal-step-8 .action-content-box {
	margin-top: 15px;
	padding-left: 5px;
}

#gmp-popup-modal-step-4 .action-content-box h4#gmp-action-innner,
#gmp-popup-modal-step-8 .action-content-box h4#gmp-action-innner {
	margin: 0;
}
#gmp-popup-modal-step-4 .gmp-note-view-all-box,
#gmp-popup-modal-step-8 .gmp-note-view-all-box {
	margin: 25px;
	margin-top: 5px;
}

.gmp-note-inner-box {
	margin: 15px 0px;
	background: #dadada52;
	border-radius: 10px;
	padding: 10px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.gmp-note-content-box {
	padding: 2px 0px;
}

.gmp-common-user-goal-list-box .gmp-btn-track-goal-box {
	margin: 25px 0px;
	margin-bottom: 0;
		display: flex;
	justify-content: space-between;
}
.gmp-common-user-goal-list-box button.gmp-btn-track-goal,
.gmp-common-user-goal-list-box button.gmp-btn-self-recommended-goal {
	background: var(--gmp-list-primary-btn-color);
	color: var(--gmp-list-text-color);
	border-color: currentColor;
}

.gmp-common-user-goal-list-box button.gmp-btn-track-goal:hover,
.gmp-common-user-goal-list-box button.gmp-btn-self-recommended-goal:hover {
	background: var(--gmp-list-button-hover-btn-color);
	color: var(--gmp-list-text-color);
	border-color: currentColor;
}

.gmp-note-view-all-box #gmp-step-title {
	margin: 5px 0px;
}

.gmp-note-view-all-box #gmp-note-content {
	margin: 5px 0;
}

/* div#gmp-body-content-step-main-css {
	overflow-x: hidden;
	overflow-y: scroll;
	height: calc(100vh - 35vh);
	-webkit-overflow-scrolling: touch;
	margin-top: 5px;
} */

.gmp-current-users-goal-popup #gmp-body-content-step-main-css,
.gmp-completed-users-goal-popup #gmp-body-content-step-main-css {
	overflow-x: hidden;
	overflow-y: auto;
	height: calc(100vh - 35vh);
	-webkit-overflow-scrolling: touch;
	margin-top: 0px;
	/* display: flex;
	flex-direction: column;
	justify-content: space-between; */
}

.gmp-note-view-all-box .gmp-note-title-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gmp-note-view-all-box .gmp-note-step-btn {display: flex;gap: 15px; }

.gmp-note-view-all-box .gmp-note-step-btn span.dashicons {
	cursor: pointer;
	display: inline-block;
	font-size: 25px;
		border: 1px solid;
	border-radius: 15px;
	padding: 3px;
	width: 100%;
}

.gmp-note-view-all-box .gmp-note-step-btn span.dashicons-edit {
	cursor: pointer;
	display: inline-table;
	color: var(--gmp-list-button-hover-btn-color);
	}

.gmp-note-view-all-box .gmp-note-step-btn span.dashicons-trash {
	display: inline-table;
	color: var(--gmp-list-primary-btn-color);
}

	.gmp-note-view-all-box .gmp-note-step-btn span.dashicons-trash:hover {
	display: inline-table;
	color: var(--gmp-list-button-hover-btn-color);
}
	.gmp-note-view-all-box .editing {
	outline: auto;
		padding: 7px;
}


button.gmp-complete-goal-btn, button.gmp-delete-goal-btn{
	color: var(--gmp-list-primary-btn-color);
	border: 1px solid;
}

button.gmp-complete-self-goal-btn, button.gmp-delete-self-goal-btn {
	color: var(--gmp-list-primary-btn-color);
	border: 1px solid;
	background: transparent;
}

.note-content-self-button button:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
	background: var(--gmp-list-primary-color);
	color: var(--gmp-list-text-color);
}


.type-something-box-toggle .form-group {
	display: flex;
	align-items: center;
	align-content: center;
}
.type-something-box-toggle .form-group label {
	margin-bottom: 0;
}

button.gmp-btn-edit-track-goal, button.gmp-btn-edit-track-goal:focus,
button.gmp-btn-edit-self-goal, button.gmp-btn-edit-self-goal:focus {
	background: transparent;
	border: 2px solid #f47952;
	border-radius: 25px;
	padding: 9px;
}
button.gmp-btn-edit-track-goal:hover, button.gmp-btn-edit-track-goal:focus,
button.gmp-btn-edit-self-goal:hover, button.gmp-btn-edit-self-goal:focus{
	background: transparent;
	border: 2px solid #14375d;
}
button.gmp-btn-edit-track-goal span.dashicons.dashicons-edit:hover{
	color: #14375d;
}
button.gmp-btn-edit-track-goal span.dashicons.dashicons-edit{
	color: #f47952;
}


/* recommended css start  */
.set-recommended-goal {
	margin: 35px 0px;
}
.recommended-goals-popup .gmp-modal-header-step-3 .gmp-step-3-arrow,
.current-edit-goals-popup .gmp-modal-header-step-5 .gmp-step-5-arrow {
	display: none;
}
.goal-cards.recommended-goals button.gmp-btn-track-goal,
.goal-cards.recommended-goals button.gmp-btn-self-recommended-goal{
	border: 2px solid #f47952;
	border-radius: 25px;
	padding: 9px;
}


/* recommended css end  */


/* self goal css Start  */
.gmp-sub-btn-box{
	display: flex;
	justify-content: flex-end;
}

.gmp-sub-btn-box button.gmp-btn-self-track-goal {
	background: var(--gmp-list-primary-btn-color);
	color: var(--gmp-list-text-color);
	border-color: currentColor;
	font-family: inherit;
	font-size: 15px;
	border-radius: var(--bb-button-radius);
	padding: 10px 20px;
	font-weight: 500;
	font-style: normal;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	display: inline-block;
	line-height: 1.3;
	border-width: 1px;
	border-style: solid;
	outline: 0;
	vertical-align: middle;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-transition: alllinear .2s;
	transition: alllinear .2s;
}
.gmp-sub-btn-box button.gmp-btn-self-track-goal:hover {
	background: var(--gmp-list-button-hover-btn-color);
	color: var(--gmp-list-text-color);
	border-color: currentColor;
}


.gmp-goal-title-box {
	display: block;
	width: 100%;
	margin-top: 20px;
}

.gmp-goal-title-box input#goal-name {
	width: 100%;
	margin-top: 7px;
}

.gmp-popup-modal-self-goal,
.gmp-popup-modal-self-goal-update {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 700px;
	height: auto;
	background: rgba(0, 0, 0, 0.8);
	z-index: 22222;
	border-radius: 10px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	margin-top: 2%;
}

.gmp-modal-header-self-goal,
.gmp-modal-header-self-goal-update {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 25px;
	background-color: var(--gmp-list-primary-color);
	color: white;
	text-align: center;
	width: 100%;
	border-radius: 0px 0px 25px 25px;
	position: relative;

}

.gmp-popup-modal-self-goal .gmp-modal-content-self-goal,
.gmp-popup-modal-self-goal-update .gmp-modal-content-self-goal-update {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2#gmp-modal-title-self-goal,
h2#gmp-modal-title-self-goal-update {
	font-size: 20px;
	margin: 0;
	color: var(--gmp-list-text-color);
	width: 100%;
	text-align: center;
	padding: 0 10px;
}

.gmp-modal-close-btn-self-goal,
.gmp-modal-close-btn-self-goal-update {
	background: var(--gmp-list-secondary-color);
}


.gmp-modal-close-btn-self-goal:hover,
.gmp-modal-close-btn-self-goal-update:hover {
	background: var(--gmp-list-hover-color);
	color: var(--gmp-list-text-hover-color);
}

.gmp-body-content-self-goal,
.gmp-body-content-self-goal-update {
	padding: 25px 15px;
	background: #fff;
	border-radius: 10px;
}

.gmp-popup-modal-self-goal .gmp-body-content-self-goal,
.gmp-popup-modal-self-goal-update .gmp-body-content-self-goal-update  {
	overflow-x: hidden;
	overflow-y: scroll;
	height: calc(100vh - 35vh);
	-webkit-overflow-scrolling: touch;
	margin-top: 5px;
}


.gmp-popup-modal-self-goal .gmp-body-content-self-goal::-webkit-scrollbar,
.gmp-popup-modal-self-goal-update .gmp-body-content-self-goal-update::-webkit-scrollbar {
	height: 5p;
	width: 5px;
}
.gmp-popup-modal-self-goal .gmp-body-content-self-goal::-webkit-scrollbar-thumb,
.gmp-popup-modal-self-goal-update .gmp-body-content-self-goal-update::-webkit-scrollbar-thumb  {
	background-color: var(--gmp-list-primary-color);
	border-radius: 5px;
	cursor: pointer;
}
.gmp-popup-modal-self-goal .gmp-body-content-self-goal::-webkit-scrollbar-track,
.gmp-popup-modal-self-goal-update .gmp-body-content-self-goal-update::-webkit-scrollbar-track  {
	background-color: #fff;
	border-radius: 5px;
}

.gmp-modal-footer-self-goal,
.gmp-modal-footer-self-goal-update  {
	padding: 25px;
}

button.gmp-modal-next-btn-self-goal,
button.gmp-modal-next-btn-self-goal-update {
	background: var(--gmp-list-primary-btn-color);
	color: var(--gmp-list-text-color);
	border-color: currentColor;
	width: 100%;
}


button.gmp-modal-next-btn-self-goal:hover,
button.gmp-modal-next-btn-self-goal-update:hover {
	background: var(--gmp-list-button-hover-btn-color);
	color: var(--gmp-list-text-color);
	border-color: currentColor;
}
.gmp-modal-close-btn-self-goal,
.gmp-modal-close-btn-self-goal-update  {
	background: var(--gmp-list-secondary-color);
	padding: 5px;
	margin: 0;
	color: #000;
	cursor: pointer;
}

.gmp-modal-header-self-goal::before,
.gmp-modal-header-self-goal-update::before  {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 55px;
	background: var(--gmp-list-primary-color);
	clip-path: ellipse(57% 55px at center top);
	top: 56px;
	z-index: 1;
}



.gmp-popup-modal-open-self-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 22221; /* Lower than the modal to ensure it's behind */
}

.action-content-box {
	margin-top: 20px;
}
.action-content-box .primary-accordion-box {
	text-align: right;
}
.action-content-box button.accordion-button {
	background: var(--gmp-list-primary-btn-color);
	color: var(--gmp-list-text-color);
	border-color: currentColor;
	font-family: inherit;
	font-size: 15px;
	border-radius: var(--bb-button-radius);
	padding: 10px 20px;
	font-weight: 500;
	font-style: normal;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	display: inline-block;
	line-height: 1.3;
	border-width: 1px;
	border-style: solid;
	outline: 0;
	vertical-align: middle;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-transition: alllinear .2s;
	transition: alllinear .2s;
}
.action-content-box button.accordion-button:hover {
	background: var(--gmp-list-button-hover-btn-color);
	color: var(--gmp-list-text-color);
	border-color: currentColor;
}

.action-content-box .accordion {
	padding: 10px 0px;
}

.action-content-box .accordion-item {
	background-color: #f9f9f9;
	border-radius: 8px;
	margin-bottom: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.action-content-box .accordion-header,
.gmp-body-content-self-goal-update .edit-accordion-header {
	padding: 10px 15px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #ffffff;
	background: #14375d;
	border-radius: 5px;

}


.action-content-box  .accordion-content,
.gmp-body-content-self-goal-update  .edit-accordion-content {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	background: #fff;
}

.action-content-box .accordion-content label,
.gmp-body-content-self-goal-update .edit-accordion-content label {
	display: flex;
	align-items: center;
	margin: 10px 0;
	cursor: pointer;
}

.action-content-box .accordion-content input[type="checkbox"],
.gmp-body-content-self-goal-update .edit-accordion-content input[type="checkbox"] {
	margin-right: 10px;
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.action-content-box .remove-btn {
padding: 9px 13px;
	border: none;
	background: #ff4444;
	color: white;
	cursor: pointer;
	float: right;
	margin: 4px;
	border-radius: 30px;
	font-size: 16px;
}

.action-content-box .gfy-list-column {
	padding: 10px 0px;
}
.action-content-box input#front-action-name {
	width: 100%;
}

.action-content-box .gmp-week-day-count-box {
	width: 100%;
	/*max-width: 540px;*/
}
.action-content-box .checkbox-container {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}
.action-content-box .checkbox-container .checkbox-input {
	visibility: hidden;
	width: 0 !important;
	height: 0 !important;
	margin: 0 !important;
	min-width: 0 !important;
	line-height: 0;
	display: none;
}
.action-content-box .checkbox-container .checkbox-label {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid #dadada;
	border-radius: 50%;
	cursor: pointer;
	background-color: #F5F5F5;
	transition: 0.3s;
	color: #707070;
	font-size: 12px;
}
.action-content-box .checkbox-input:checked + .checkbox-label {
	color: var(--gmp-list-text-color);
	border-color: var(--gmp-list-primary-color);
	background: var(--gmp-list-primary-color) 0% 0% no-repeat padding-box;
}

.action-content-box .notification-card-switch {
	padding-top: 15px;
}
.action-content-box .notification-card-switch .form-group {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}
.action-content-box .toggle-switch-gamplify-list .gamplify-list-checkbox {
	opacity: 0;
	width: 0;
	height: 0;
}

.action-content-box .gamplify-list-checkbox:checked + .gamplify-list-slider {
	background-color: var(--gmp-list-primary-color);
	border-color: var(--gmp-list-primary-color);
}

.action-content-box .gamplify-list-checkbox:checked + .gamplify-list-slider:before {
	transform: translateX(20px);
	background-color: #fff;
}

.action-content-box .toggle-switch-gamplify-list {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 20px;
	margin-right: 5px;
	margin-left: 0px;
	margin-bottom: 0px;
}

.action-content-box .gamplify-list-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	transition: .4s;
	border-radius: 20px;
	border: 1px solid #707070;
}

.action-content-box .gamplify-list-slider:before {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	left: 1px;
	bottom: 1px;
	background-color: #6F7893;
	transition: .4s;
	border-radius: 50%;
}


.action-content-box div#popup2 .time-picker {
	position: relative !important;
	left: inherit;
	right: inherit;
}

.action-content-box div#popup2 {
	background: rgb(250 250 250);
	border-radius: 10px;
	border: 1px solid #dadada;
}

.action-content-box #popup2 .timezone-content-box {
	padding: 0px;
}

.action-content-box #popup2 div#week_day_name {
	padding: 0px 0px;
}

.action-content-box .gmp-some-action-box h3 {
	margin: 0;
}

.action-content-box .type-something-box-toggle label.toggle-switch-gamplify-list {
	margin-right: 10px;
}

.action-content-box .switch_group_col .gamplify-list-cust-heading {
	margin: 10px 0 !important;
}
.action-content-box .time-zone-col .gamplify-list-cust-heading  {
	padding-bottom: 10px;
}

.gmp-common-user-goal-list-box.self-user-goal-lists {
	margin-top: 20px;
}

.self-user-goal-lists button.gmp-btn-self-track-goal {
	background: var(--gmp-list-primary-btn-color);
	color: var(--gmp-list-text-color);
	border-color: currentColor;
}


.self-user-goal-lists button.gmp-btn-self-track-goal:hover {
	background: var(--gmp-list-button-hover-btn-color);
	color: var(--gmp-list-text-color);
	border-color: currentColor;
}

.gmp-modal-header-step-8 .gmp-left-side-header {
	width: 100%;
	justify-content: center;
}

.completed-self-goals button.gmp-btn-track-self-goal:hover {
	background: var(--gmp-list-button-hover-btn-color);
	color: var(--gmp-list-text-color);
	border-color: currentColor;
}

.completed-self-goals button.gmp-btn-track-self-goal {
	background: var(--gmp-list-primary-btn-color);
	color: var(--gmp-list-text-color);
	border-color: currentColor;
}

/* self goal css End   */


/* responsive css start  */
@media (max-width: 1440px) {
	.gmp-popup-modal-step-1,
	.gmp-popup-modal-step-2,
	.gmp-popup-modal-step-3{
		margin-top: 1%;
	}

	.gmp-popup-modal-step-1 .gmp-body-content-step-1,
	.gmp-popup-modal-step-2 .gmp-body-content-step-2  {
		height: calc(100vh - 30vh);
	}

	.gmp-popup-modal-step-3 .gmp-body-content-step-3{
		height: calc(100vh - 30vh);
	}

	.gmp-popup-modal-step-4 {
		margin-top: 1%;
	}
	.gmp-popup-modal-step-4 .gmp-modal-content-step-4 #gmp-body-content-step-main-css {
		height: calc(100vh - 30vh);
	}
}

@media (max-width: 1366px) {
	.gmp-popup-modal-step-1 .gmp-body-content-step-1,
	.gmp-popup-modal-step-2 .gmp-body-content-step-2 {
		height: calc(100vh - 32vh);
	}
	.gmp-popup-modal-step-3 .gmp-body-content-step-3 {
		height: calc(100vh - 31vh);
	}

	.gmp-category-card .banner-text {
		font-size: 30px;
	}

    .gmp-category-card .banner-sub-text {
        font-size: 22px;
    }

	.gmp-popup-modal-step-4 .gmp-modal-content-step-4 #gmp-body-content-step-main-css {
		height: calc(100vh - 32vh);
	}
}

@media (max-width: 1200px) {
	.gmp-popup-modal-step-1 .gmp-body-content-step-1,
	.gmp-popup-modal-step-2 .gmp-body-content-step-2 {
		height: calc(100vh - 35vh);
	}
	.gmp-popup-modal-step-3 .gmp-body-content-step-3 {
		height: calc(100vh - 35vh);
	}

	.gmp-category-card .banner-text {
		font-size: 25px;
	}
    .gmp-category-card .banner-sub-text {
        font-size: 18px;
    }
	.gmp-popup-modal-step-4 .gmp-modal-content-step-4 #gmp-body-content-step-main-css{
		height: calc(100vh - 35vh);
	}

}

@media (max-width: 1024px) {
	.gmp-popup-modal-step-1,
	.gmp-popup-modal-step-2{
		top: 0;
		transform: translate(-50%, 10%);
		margin-top: 1%;
	}
	.gmp-popup-modal-step-1 .gmp-body-content-step-1,
	.gmp-popup-modal-step-2 .gmp-body-content-step-2 {
		height: clamp(40vh, calc(100vh - 40vh), 60vh);
	}

	.gmp-popup-modal-step-3 {
		top: 0;
		transform: translate(-50%, 10%);
	}
	.gmp-popup-modal-step-3 .gmp-body-content-step-3 {
		height: clamp(40vh, calc(100vh - 40vh), 60vh);
	}
	.gmp-category-card .banner-text {
		font-size: 20px;
		max-width: 220px;
	}
    .gmp-category-card .banner-sub-text {
        font-size: 16px;
        max-width: 220px;
    }

	.gmp-popup-modal-step-4{
		top: 0;
		transform: translate(-50%, 10%);
		margin-top: 1%;
	}

	.gmp-popup-modal-step-4 .gmp-modal-content-step-4 #gmp-body-content-step-main-css{
		height: clamp(35vh, calc(100vh - 35vh), 70vh);
	}

	.gmp-popup-modal-step-4 .gmp-modal-content-step-4 .gmp-modal-header-step-4 .gmp-left-side-header #gmp-modal-title-step-4 {
		font-size: 18px;
	}
	.gmp-popup-modal-step-4 .action-content-box .gmp-step-select {
		margin-bottom: 16px;
	}

}

@media (max-width: 992px) {

	.gmp-popup-modal-step-1,
	.gmp-popup-modal-step-2 {
		top: 0;
		transform: translate(-50%, 10%);
		margin-top: 0;
	}
	.gmp-popup-modal-step-1 .gmp-body-content-step-1,
	.gmp-popup-modal-step-2 .gmp-body-content-step-2 {
		height: clamp(40vh, calc(100vh - 40vh), 80vh);
	}
	.gmp-popup-modal-step-3 .gmp-body-content-step-3 .gmp-container-step-3 .gmp-section-box-1 {
		padding-bottom: 10px;
		padding-top: 10px;
	}
	.gmp-popup-modal-step-3 .gmp-body-content-step-3 .gmp-section-box-2 .gmp-week-day-count-box{
		padding-top: 15px;
	}
	.gmp-popup-modal-step-3 .gmp-body-content-step-3 .gmp-section-box-2 .gmp-add-reminder-box{
		padding-bottom: 15px;
	}
	.gmp-popup-modal-step-3 .gmp-body-content-step-3{
		padding-bottom: 15px;
	}
	.gmp-popup-modal-step-3 .gmp-modal-content-step-3 .gmp-modal-footer-step-3{
		padding: 15px 25px 25px;
	}
	.gmp-common-user-goal-list-box .card{
		flex: 1 1 calc(50% - 15px);
		max-width: calc(50% - 15px);
	}

	.gmp-popup-modal-step-3{
		top: 0;
		transform: translate(-50%, 10%);
		margin-top: 0;
	}
	.gmp-popup-modal-step-3 .gmp-body-content-step-3 {
		height: clamp(40vh, calc(100vh - 40vh), 80vh);
	}

	h2#gmp-modal-title-step-1, h2#gmp-modal-title-step-2, h2#gmp-modal-title-step-3{
		font-size: 18px;
	}

	.gmp-popup-modal-step-4 {
		top: 0;
		transform: translate(-50%, 10%);
		margin-top: 0;
	}
	.gmp-popup-modal-step-4 .gmp-modal-content-step-4 #gmp-body-content-step-main-css{
		height: clamp(40vh, calc(100vh - 40vh), 80vh);
	}
}


@media (max-width: 880px) {
	.gmp-popup-modal-step-1,
	.gmp-popup-modal-step-2{
		top: 0;
		transform: translate(-50%, 10%);
	}
	.gmp-popup-modal-step-1 .gmp-body-content-step-1,
	.gmp-popup-modal-step-2 .gmp-body-content-step-2 {
		height: clamp(40vh, calc(100vh - 40vh), 80vh);
	}

	.gmp-popup-modal-step-3{
		top: 0;
		transform: translate(-50%, 10%);
	}
	.gmp-popup-modal-step-3 .gmp-body-content-step-3 {
		height: clamp(40vh, calc(100vh - 40vh), 80vh);
	}

	.gmp-category-card{
		min-height: 150px;
	}
	.gmp-category-card .banner-text,
    .gmp-category-card .banner-sub-text {
		font-size: 18px;
		max-width: 100%;
		padding-right: 30%;
	}
    .gmp-category-card .banner-sub-text {
        font-size: 14px;
        max-width: 100%;
        padding-right: 30%;
    }

	.gmp-popup-modal-step-4 {
		top: 0px;
		transform: translate(-50%, 10%);
	}
	.gmp-popup-modal-step-4 .gmp-modal-content-step-4 #gmp-body-content-step-main-css{
		height: clamp(40vh, calc(100vh - 40vh), 80vh);
	}

}

@media (max-width: 768px) {
	.gmp-popup-modal-step-1 .gmp-body-content-step-1,
	.gmp-popup-modal-step-2 .gmp-body-content-step-2 {
		height: clamp(40vh, calc(100vh - 40vh), 60vh);
	}

	.gmp-popup-modal-step-3 .gmp-body-content-step-3{
		height: clamp(40vh, calc(100vh - 40vh), 60vh);
	}

	.gmp-popup-modal-step-4 .gmp-modal-content-step-4 #gmp-body-content-step-main-css {
		height: clamp(40vh, calc(100vh - 40vh), 60vh);
	}
	.gmp-popup-modal-step-4 .gmp-modal-content-step-4 #gmp-body-content-step-main-css  .gmp-body-content-step-4 {
		padding: 5px 15px;
	}
	.gmp-popup-modal-step-4 .gmp-modal-content-step-4 .gmp-modal-header-step-4 .gmp-left-side-header #gmp-modal-title-step-4 {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.gmp-popup-modal-step-1, .gmp-popup-modal-step-2, .gmp-popup-modal-step-3{
		width: 95%;
	}

	.gmp-section-box-2 .checkbox-container{
		gap: 10px;
	}
	.gmp-section-box-2 .checkbox-container{
		margin-top: 15px;
	}

	.gmp-popup-modal-step-1 .gmp-body-content-step-1,
	.gmp-popup-modal-step-2 .gmp-body-content-step-2 {
		height: clamp(40vh, calc(100vh - 45vh), 70vh);
	}

	.gmp-popup-modal-step-3 .gmp-body-content-step-3 {
		height: clamp(40vh, calc(100vh - 43vh), 70vh);
	}

	.gmp-goal-list-grid{
		grid-template-columns: 1fr;
	}

	.gmp-popup-modal-step-4 {
		width: 95%;
	}
	.gmp-popup-modal-step-4 .gmp-modal-content-step-4 #gmp-body-content-step-main-css {
		height: clamp(40vh, calc(100vh - 45vh), 70vh);
	}
	.gmp-note-view-all-box .gmp-note-step-btn span.dashicons{
		font-size: 20px;
	}

}

/* @media (max-width: 575px) {
	.gmp-popup-modal-step-1 .gmp-body-content-step-1,
	.gmp-popup-modal-step-2 .gmp-body-content-step-2 {
		height: clamp(30vh, calc(100vh - 35vh), 70vh);
	}

	.gmp-popup-modal-step-3 .gmp-body-content-step-3 {
		height: clamp(30vh, calc(100vh - 35vh), 70vh);
	}

	.gmp-common-user-goal-list-box .card {
		flex: 1 1 calc(100% - 15px);
		max-width: calc(100% - 15px);
	}
} */


@media (max-width: 575px) {
	.gmp-popup-modal-step-1 .gmp-body-content-step-1,
	.gmp-popup-modal-step-2 .gmp-body-content-step-2 {
		height: clamp(30vh, calc(100vh - 35vh), 70vh);
	}

	.gmp-popup-modal-step-3 .gmp-body-content-step-3 {
		height: clamp(30vh, calc(100vh - 35vh), 70vh);
	}
	.gmp-goals-slider-box {
		width: 100%;
		overflow: hidden;
	}
	.dots {
		text-align: center;
		margin-top: 15px;
	}
	.dots span.dot.active {
		background: #000;
	}

	.dots .dot {
		height: 10px;
		width: 10px;
		margin: 5px;
		background-color: #bbb;
		border-radius: 50%;
		display: inline-block;
		cursor: pointer;
	}

	.gmp-common-user-goal-list-box .goal-cards{
		flex-wrap: nowrap;
		justify-content: flex-start;
		transition: 0.5s all;
		gap:0;
	}

	.gmp-common-user-goal-list-box .card {
		width:100%;
		transition: 0.5s all;
		max-width: 100%;
		flex:inherit;
		min-width: 100%;
		box-sizing: border-box;
	}

	.gmp-popup-modal-step-4 .gmp-modal-content-step-4 #gmp-body-content-step-main-css {
		height: clamp(25vh, calc(100vh - 25vh), 70vh);
	}
	.gmp-popup-modal-step-4 .gmp-modal-content-step-4 .gmp-modal-header-step-4 .gmp-left-side-header {
		width: 90%;
	}
	.gmp-popup-modal-step-4 .gmp-modal-content-step-4 .gmp-modal-header-step-4 .gmp-left-side-header #gmp-modal-title-step-4 {
		font-size: 14px;
	}
	.gmp-body-content-step-4 .round label{
		height: 40px;
		width: 40px;
	}
	.gmp-body-content-step-4 .round label:after{
		left: 0;
		right: 0;
		margin: 0 auto;
		top: 6.5px;
	}
}


@media (max-width: 480px) {
	.gmp-popup-modal-step-1 .gmp-body-content-step-1,
	.gmp-popup-modal-step-2 .gmp-body-content-step-2 {
		height: clamp(25vh, calc(100vh - 35vh), 60vh);
	}

	.gmp-popup-modal-step-3 .gmp-body-content-step-3 {
		height: clamp(25vh, calc(100vh - 35vh), 60vh);
	}
	.gmp-category-card {
		min-height: 130px;
	}

	.gmp-popup-modal-step-4 .gmp-modal-content-step-4 #gmp-body-content-step-main-css {
		height: clamp(25vh, calc(100vh - 25vh), 70vh);
	}

	.gmp-popup-modal-step-4 .gmp-modal-content-step-4 .gmp-modal-header-step-4 .gmp-left-side-header #gmp-modal-title-step-4 {
		font-size: 14px;
		line-height: 1.2;
	}
	.gmp-body-content-step-4 .checkbox-container-css{
		gap: 15px;
	}
	.gmp-common-user-goal-list-box .header {
		align-items: self-start;
		flex-direction: column;
		gap: 10px;
	}
	.gmp-common-user-goal-list-box .header h2 {
		font-size: 20px;
	}

}

@media (max-width: 320px) {
	.gmp-popup-modal-step-1 .gmp-body-content-step-1,
	.gmp-popup-modal-step-2 .gmp-body-content-step-2 {
		height: clamp(20vh, calc(100vh - 40vh), 60vh);
	}

	.gmp-popup-modal-step-3 .gmp-body-content-step-3 {
		height: clamp(20vh, calc(100vh - 40vh), 60vh);
	}

	.gmp-popup-modal-step-4 .gmp-modal-content-step-4 #gmp-body-content-step-main-css {
		height: clamp(20vh, calc(100vh - 40vh), 60vh);
	}
	.gmp-popup-modal-step-4 .gmp-modal-content-step-4 .gmp-modal-header-step-4 .gmp-left-side-header #gmp-modal-title-step-4 {
		font-size: 13px;
	}
	.gmp-body-content-step-4 .todays-note-section .note-content-inner .note-content .gmp-add-note-btn {
		width: 100%;
	}
	.gmp-body-content-step-4 .todays-note-section .note-content-inner {
		flex-wrap: wrap;
		flex-direction: column;
		gap: 10px;
	}
	.gmp-body-content-step-4 .todays-note-section .note-content-inner .note-content-button {
		display: flex;
		justify-content: space-between;
		flex-direction: column;
		gap: 10px;
	}
	.gmp-current-users-goal-popup .btn-view-all {
		padding: 10px 30px;
	}
	.gmp-body-content-step-4 .checkbox-container-css {
		gap: 9px;
	}

	.gmp-body-content-step-4 .round label {
		height: 30px;
		width: 30px;
		border: 5px solid #dadada;
	}
	.gmp-body-content-step-4 .round label:after {
		top: 5px;
		width: 16px;
		border: 3px solid #fff;
		border-top: none;
		border-right: none;
	}

	.gmp-goal-left-section  .gmp-inner-left-content {
		width: 60%;
	}
}

@media (max-height: 1080px){
	/* .gmp-popup-modal-step-1 .gmp-body-content-step-1{
		height: calc(100vh - 33vh);
	} */
}



/* @media (max-width: 1366px), (max-height: 824px) {
	.gmp-popup-modal-step-1, .gmp-popup-modal-step-2, .gmp-popup-modal-step-3 {
		top: 0;
		transform: translate(-50%, 15%);
	}
	.gmp-body-content-step-1, .gmp-body-content-step-2, .gmp-body-content-step-3 {
		height: calc(100vh - 55vh);
	}
} */

/* @media (max-width: 1024px), (max-height: 600px) {
	.gmp-popup-modal-step-1 .gmp-body-content-step-1,
	.gmp-popup-modal-step-2 .gmp-body-content-step-2{
		height: calc(100vh - 45vh);
	}
	.gmp-popup-modal-step-3 .gmp-body-content-step-3{
		height: calc(100vh - 40vh);
	}
}   */


/* @media (max-width: 912px), (max-height: 1368px) {

	.gmp-popup-modal-step-1, .gmp-popup-modal-step-2, .gmp-popup-modal-step-3{
		top: 0;
		transform: translate(-50%, 10%);
	}
	.gmp-popup-modal-step-1 .gmp-body-content-step-1, .gmp-popup-modal-step-2 .gmp-body-content-step-2 {
		height: calc(100vh - 65vh);
	}

	.gmp-popup-modal-step-3 .gmp-body-content-step-3{
		height: calc(100vh - 65vh);
	}
} */

/* @media (max-width: 853px), (max-height: 1280px) {
	.gmp-popup-modal-step-1, .gmp-popup-modal-step-2, .gmp-popup-modal-step-3 {
		top: 0;
		transform: translate(-50%, 10%);
	}
	.gmp-popup-modal-step-1 .gmp-body-content-step-1, .gmp-popup-modal-step-2 .gmp-body-content-step-2 {
		height: calc(100vh - 60vh);
	}

	.gmp-popup-modal-step-3 .gmp-body-content-step-3{
		height: calc(100vh - 60vh);
	}
}  */



.notification-cart-content-box .app_switch_1 {
	display: none !important;
}

.gmp-common-user-goal-list-box button.gmp-btn-track-goal span.dashicons-edit,
.gmp-common-user-goal-list-box button.gmp-btn-track-goal span.dashicons-edit:hover {
	color: #fff;
}
