/* ================== COLOR ==========================*/
:root {
	--main-txt-clr: rgba(38, 40, 42, 1);
	--grey-txt-clr: rgb(133, 133, 133);
	--main-green: #7EBD0B;
	--footer-background: #5A6B6C;
	--grey-background: rgb(238, 238, 238);
}

/* ================== GENERAL ==========================*/
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	box-sizing: border-box;
}

p,
button,
a,
label {
	color: var(--main-txt-clr);
	font-size: 1rem;
	line-height: 1.25rem;
	font-weight: 500;
	font-family: 'Erply Ladna', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

input:disabled {
	pointer-events: none;
	cursor: not-allowed;
}

h2 {
	font-size: 1.5rem;
	margin-bottom: .5rem;
}

h1 {
	font-size: 1.8rem;
}

.font-color-grey {
	color: var(--grey-txt-clr);
}

.hidden {
	display: none !important;
}

/* ================== LAYOUT ==========================*/

.booking-wizard {
  display: flex;
  width: 100%;
  flex: 1;
  background-color: white;
}

.background-leaf {
	flex: 1;
	position: relative;
	overflow: hidden;
}

.background-leaf img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.booking-wizard__container--sm {
  max-width: 500px;
  min-width: 280px;
  width: 30%;
}

.booking-wizard__container--md {
  max-width: 100%;
  min-width: 400px;
}

.booking-wizard__title {
  color: #0f1311;
  font-size: 24px;
  font-family: Erply Ladna;
  font-weight: 600;
  line-height: 36px;
  word-wrap: break-word
}

.left-side {
	background-color: white;
}

.left-side {
	padding: 9rem 2rem 2rem 4rem;
	height: fit-content;
	min-width: 850px;
}

.left-side-group {
	padding: 9rem 4rem 1rem;
}

.left-side .tabs {
	border: none;
	padding: 0;
	border-radius: 8px;
}

.left-side .tabs .tabs__item {
	display: flex;
	min-width: 100px;
	text-align: center;
	align-content: center;
	padding: .5rem;
	border-radius: 8px;
	color: var(--main-txt-clr);
	gap: .5rem;
	border: 1px solid var(--border-sec-clr);
	box-shadow: 0 5px 10px rgba(0,0,0,.05);
}

.left-side .tabs .tabs__item:hover {
	color: var(--main-txt-clr);
}

.left-side .tabs .tabs__item.item--active {
	background: var(--btn-primary);
	color: var(--white) !important;
	font-weight: bold !important;
	border: 1px solid transparent;
}

.left-side .tabs .tabs__item.item--active i {
	color: var(--white);
}

.left-side .tabs .tabs__item.item--active::after {
	display: none;
}

.left-side .tabs .tabs__item i {
	color: var(--main-txt-clr);
	font-size: 1.5em;
}


/* =========== LOADER ==========*/
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-bg);
    z-index: 9999;
    display: none;
}

@keyframes spin {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
}

.loader-overlay__spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--loader-clr);
    border-top: 5px solid var(--loader-accent-clr);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-overlay--active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================== HEADER ==========================*/
.header {
	display: flex;
	position: fixed;
	width: 100%;
	align-items: center;
	padding: 1rem 4rem;
	z-index: 10;
	height: 7rem;
	background-color: white;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
	justify-content: space-between;
}

.footer {
	display: flex;
	width: 100%;
	align-items: center;
	padding: 1rem 4rem;
	z-index: 10;
}

.footer__name {
	line-height: 2rem;
	margin: 0;
	font-size: 1.25rem;
}

.header__right-side {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
}

.header__right-side-container {
	flex-flow: row-reverse;
	justify-content: space-between;
  	width: 100%;
}

.header__left-side {
	display: none;
}

.header__logo-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	box-sizing: border-box;
}

.header__logo-container img {
	max-height: 100%;
	height: 80px;
	width: 96px;
	display: block;
	object-fit: contain;
}

.header-info {
	flex-direction: column;
	gap: 0px;
	align-items: end;
}

.header-info .flex-col {
	flex-direction: row;
	align-self: auto;
	padding-right: 0%;
	gap: 8px;
}

.stepper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 300px;
	margin: 1rem 4rem;
	position: relative;
}

.step {
	display: flex;
	flex-direction: column;
	position: relative;
	text-align: center;
	z-index: 1;
	margin-bottom: 0;
	align-items: center;
}

.step label {
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 6px solid var(--grey-background);
	background-color: white;
	text-decoration: none;
	z-index: 1;
}

.step.current label {
	border-color: var(--main-green);
}

.step:not(:last-of-type)::after {
	content: "";
	position: absolute;
	top: 25%;
	left: 75%;
	width: 70px;
	height: 0;
	border-top: 1px dashed rgb(201, 201, 201);
	z-index: 0;
}

.step a, .step div {
	text-decoration: none;
	color: var(--grey-txt-clr);
	font-size: 0.65rem;
	font-weight: 100;
	line-height: 1.25rem;
}

.language-toggle-container {
	padding: .5rem;
	background-color: white;
	z-index: 5;
}

.language-toggle-box {
	padding: .5rem;
	box-sizing: border-box;
	border: 1px solid transparent;
}

.language-toggle-container.active .language-toggle-box {
	border: 1px solid var(--grey-background);
	border-radius: 8px;
	border-bottom: none;
}

.language-options {
	position: absolute;
	top: 40px;
	left: 8px;
	padding: .3rem 0;
	border: 1px solid var(--grey-background);
	border-top: none;
	border-radius: 0 0 8px 8px;
	width: 52px;
	background-color: white;
	z-index: 5;
}

.language-option {
	font-size: 0.875rem;
	line-height: 1.25rem;
	text-decoration: none;
	font-weight: 200;
	padding: .3rem .5rem;
}

.header__name-mobile, .footer__name-mobile {
	display: none;
}

/* ================== FOOTER ==========================*/

.footer {
	height: fit-content;
	background-color: var(--btn-hover);
	bottom: 0;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0rem 0rem 1rem 0rem;
}

.footer * {
	color: black;
}

.footer .info {
	flex-wrap: wrap;
	width: 100%;
}

.footer-border {
  	padding: 1rem 7rem 0rem 7rem;
}

.footer__data {
  	display: flex;
  	gap: 10px;
}

.footer__data-section {
	display: flex;
	gap: 10px;
}

.footer-border-right {
	border-right: 1px solid black;
	padding-right: .5rem;
}

.buttons {
	width: 100%;
}

.footer .buttons {
	padding: 1rem 7rem 0rem 7rem;
}

.original-price {
	text-decoration: line-through;
	color: #9B9A9A;
	font-size: 0.8rem;
}

.discounted-price {
	font-size: 1rem;
}

.btn_back {
	display: flex;
	align-items: center;
	color: var(--btn-hover);
	text-decoration: none;
	border: 1px solid rgba(0, 0, 0, 0.05);
  	border-radius: 6px;
}

.btn_back i {
	font-weight: 100;
	font-size: 1.5rem;
	color: black;
	position: relative;
	top: 0;
	left: 17px;
}

.btn_next {
	display: flex;
  	align-items: center;
	justify-content: center;
	width: 100%;
	flex-wrap: nowrap;
	background-color: var(--btn-primary);
	padding: 1rem;
	border-radius: 4px;
	border: none;
	cursor: pointer;
}

.btn_next .button-text {
	font-weight: 500;
	color: white;
}

.btn_next .button-icon {
	display: none;
}

.btn_next:disabled {
	background-color: #f1f3f5;
	pointer-events: none;
	opacity: 0.6;
}

.btn_next:disabled .button-text {
  color: #888;
}

/* ================== RADIO AND CHECKBOX ==========================*/

.radio_container,
.checkbox_container {
	display: block;
	position: relative;
	cursor: pointer;
}

.radio_design,
.checkbox_design {
	position: absolute;
	top: -68px;
	right: -7px;
	transform: translate(-50%, -50%);
	height: 18px;
	width: 18px;
	cursor: pointer;
	border: solid 1px var(--grey-txt-clr);
}

.radio_design_v2,
.checkbox_design_v2 {
	top: 50%;
}

.radio_design {
	border-radius: 50%;
}

.checkbox_design {
	border-radius: 5px;
}

.radio_design::after,
.checkbox_design::after {
	content: '';
	position: absolute;
	display: none;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
}

.radio_design::after {
	border-radius: 50%;
}

.checkbox_design::after {
	border-radius: 3px;
}

.radio_container input[type="radio"],
.checkbox_container input[type="checkbox"] {
	opacity: 0;
	position: absolute;
	left: 0;
	width: 1px;
	height: 1px;
	margin: -1px;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	overflow: hidden;
	z-index: -1;
}

.radio_design--radio-front,
.checkbox_design--checkbox-front {
	left: 0;
}

.radio_container:has(.radio_design--radio-front) {
	padding-left: 1rem;
	margin-left: 0.5rem;
}

.checkbox_container:has(.checkbox_design--checkbox-front) {
	padding-left: 1rem;
	margin-left: 0.5rem;
}

.radio_container:has(input:disabled),
.checkbox_container:has(input:disabled) {
	cursor: not-allowed;
}

.radio_container input:checked+.radio_design,
.checkbox_container input:checked+.checkbox_design {
	background-color: white;
	border-color: black;
}

.radio_design::after,
.checkbox_design::after {
	background-color: black;
}

.radio_container input:checked+.radio_design::after,
.checkbox_container input:checked+.checkbox_design::after {
	display: block;
}

.rcw-widget-container.chat-widget.rcw-close-widget-container.rcw-widget-container-right {
	margin-bottom: 100px;
}

/* ================== COUNTDOWN ==========================*/
.details {
	display: block;
}

.details__summary {
	cursor: pointer;
	border-radius: 99px;
	background-color: white;
	font-size: 1.1rem;
	color: #0E0023;
	font-weight: 600;
	margin: 10px;
	display: flex;
	padding: 9px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	box-shadow: 0px 1px 2px 0px rgba(25, 12, 79, 0.30), 0px 0px 0px 1px rgba(39, 19, 124, 0.10), 0px 0px 0px 3px rgba(25, 12, 79, 0.10);
	max-width: 160px;
	min-width: 160px;
}

.second-screen__time-slot--disabled {
	background: none !important;
	border: solid 1px var(--grey-background);
	color: rgb(220, 220, 220) !important;
	cursor: not-allowed;
}

.modal {
	position: fixed;
	min-height: 100vh;
	width: 100%;
	top: 0;
	left: 0;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5000;
	overflow: auto;
}

.modal-overlay {
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, var(--overlay-bg-opacity));
	backdrop-filter: none;
}

.modal--small .modal-content {
	width: 400px;
	max-height: 40%;
	height: auto;
}

.modal-content {
	background-color: var(--body);
	width: 75%;
	max-width: 1000px;
	height: 75%;
	overflow-y: auto;
	padding: 32px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	border: 1px solid var(--border-light-clr);
	transition: transform 1s;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.warning-sign {
	width: 70px;
	height: 70px;
	background-color: #E0593E;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn_main {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	flex-wrap: nowrap;
	background-color: var(--btn-primary);
	padding: 1rem;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	text-decoration: none;
}

.btn_main .button-text {
	font-weight: 500;
	color: white !important;
}

.btn_main .button-icon {
	display: none;
}

.checkmark-circle {
	width: 70px;
	height: 70px;
	background-color: var(--main-green);
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.checkmark {
	width: 45px;
	height: 25px;
	border-left: 6px solid white;
	border-bottom: 6px solid white;
	transform: rotate(-45deg);
	position: absolute;
	top: 18px;
}

.promotion-code-container {
	position: relative;
	color: #0369A1;
  	background-color: #dcebff;
}

#apply_promotion_btn {
	position: absolute;
	top: 0;
	right: 0;
	background-color: white;
	width: auto;
	padding: .5rem 1rem;
	height: 100%;
	border-radius: 4px;
	border: 1px solid #f0e4d4;
	cursor: pointer;
	color: var(--grey-txt-clr);
}

#apply_promotion_btn:hover {
	background-color: #F1F1F1;
	color: var(--main-txt-clr);
}

#apply_promotion_btn:disabled {
	pointer-events: none;
	cursor: not-allowed;
} 

/* ================== INPUTS ==========================*/
.contact_label {
	font-size: 0.875rem;
	line-height: normal;
	font-weight: 500;
	color: var(--label-main-clr);
	overflow-wrap: break-word;
}

.input_container {
	padding: 9px 6px;
	border: 1px solid var(--border-main-clr);
	border-radius: var(--border-radius);
	background-color: var(--body);
	outline: none;
}

.input_container>* {
	border: none;
	font-size: 1rem;
	background-color: transparent;
	width: 100%;
	resize: none;
}

.input_container>*:focus {
	border: none;
	box-shadow: none;
}

.input_container input:focus,  .input_container textarea:focus {
	outline: none;
  	box-shadow: none;
	border: none;
}

/* ================== MEDIA QUERIES ==========================*/

@media (max-width: 870px) {

	.footer>div:first-child {
		flex-wrap: wrap;
	}
}

@media (max-width: 850px) {
	.booking-wizard {
		flex-direction: column;
		background: linear-gradient(
			to right,
			white 0%,
			white 60%,
			#F2EFE6 60%,
			#F2EFE6 100%
		);
	}

	.left-side {
		min-width: 100%;
		width: 100%;
		padding: 10rem 3rem 5rem 3rem;
		flex: 1;
	}

	.header {
		position: absolute;
	}
	.header__left-side, .header__right-side {
		display: flex;
	}
	.header__left-side {
		display: none;
	}

	.background-leaf {
		display: none;
	}

	.footer {
		width: 100%;
		min-width: auto;
	}

	.footer-border {
		padding: 1rem 2rem 0rem 2rem;
	}
}

@media (max-width: 770px) {
	.background-leaf {
		display: none;
	}

	.header-info .flex-col {
		flex-direction: column;
		gap: 0px;
	}

	.footer__name {
		font-size: 1rem;
	}

	.footer__data {
		flex-direction: column;
	}
}

@media (max-width: 710px) {
	.stepper {
		margin: 1rem 0;
	}

	.step:not(:last-of-type)::after {
		width: 6rem;
	}

	.background-leaf {
		display: none;
	}
}

@media (max-width: 700px) {
	.header {
		padding: 1rem;
		min-width: auto;
	}

	.background-leaf {
		display: none;
	}
}

@media (max-width: 625px) {
	.left-side {
		width: 100%;
		flex: 1;
	}

	.background-leaf {
		display: none;
	}

	.footer__data {
		gap: 5px
	}

	.footer__data-section {
		flex-direction: column;
		gap: 5px
	}

	.footer-border-right {
		border: none;
	}
}

@media (max-width: 480px) {

	#services_container {
		margin-bottom: 5rem;
	}

	.background-leaf {
		display: none;
	}
	
	h1 {
		font-size: 1.5em;
	}

	.footer-border {
		padding: 0;
	}

	.footer-service {
		flex-direction: column;
		margin: 0 auto 0 0;
		gap: .5rem;
	}

	.footer__name {
		display: none;
	}

	.footer__data {
		margin: 0 auto 0 0;
	}

	.footer .buttons {
		padding: 1rem 2rem 0rem 2rem;
	}
	.header__name {
		display: none;
	}

	.stepper-container {
		padding: 0;
	}
	
	.stepper {
		width: calc(100vw - 2rem);
		margin: 0;
	}

	.step a, .step div {
		font-size: .5rem;
	}

	.step:not(:last-of-type)::after {
		width: 7.75rem;
	}
	.left-side {
		padding: 8rem 1rem 4rem 1rem;
	}

	.booking-wizard__container--md {
		min-width: auto;
	}

	.checkmark-circle {
		height: 50px;
		width: 50px;
	}

	.checkmark {
		width: 26px;
		height: 12px;
		border-left: 4px solid white;
		border-bottom: 4px solid white;
	}

	.final-content {
		padding-top: 16rem;
	}

	.footer {
		flex-direction: column;
		gap: 1rem;
		padding: 1rem;
	}

	.footer .buttons {
		order: 1;
		gap: 2rem;
	}

	.footer__name-mobile {
		display: block;
		font-size: 1rem;
		margin: 0;
		line-height: 1.25rem;
	}

	.footer__name-mobile.service-name {
		font-weight: 400;
	}

	.footer .info .flex-col {
		display: grid;
		grid-template-columns: 10rem 1fr;
	}

	.footer .info p {
		font-size: 1rem;
	}
}

@media (max-width: 420px) {
	#services_container {
		margin-bottom: 5rem;
	}
	.step:not(:last-of-type)::after {
		width: 6.5rem;
	}
}

@media (max-width: 360px) {
	#services_container {
		margin-bottom: 5rem;
	}
	.step:not(:last-of-type)::after {
		width: 5.5rem;
	}
}


.custom-link-remove-later {
	background: var(--main-green);
    padding: .5rem 1rem;
    border-radius: 50px;
	color: #fff;
}



/* ================== GROUP BOOKING ==========================*/
.group-calendar__container {
	height: calc(100dvh - 295px);
	overflow: scroll;
}

.group-calendar__header .w-20 {
	width: 20%;
}
.group-calendar__week-label {
    font-size: 15px;
    font-weight: 500;
    min-width: 180px;
    text-align: center;
}

.second-screen__nav-btn {
	background: transparent;
	border: none;
  	font-size: 2em;
}
.second-screen__nav-btn:hover > i {
	color:  var(--main-green);
	cursor: pointer;
}
.group-calendar__nav .btn-today {
	background-color: var(--btn-primary);
	padding: .3rem .5rem;
	font-size: .8em;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	color: var(--white);
}

/* GRID LAYOUT */
.group-calendar {
    display: grid;
    grid-template-columns: 52px repeat(7, 1fr);
    border: 1px solid var(--grey-background, #eee);
    border-radius: 8px;
}

/* TIMES COLUMN */
.group-calendar__times {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--grey-background, #eee);
}
.group-calendar__time-header {
    height: 48px;
    border-bottom: 1px solid var(--grey-background, #eee);
}
.group-calendar__time-slot {
    height: 80px;
    display: flex;
    align-items: flex-start;
    padding-top: 4px;
    padding-right: 6px;
    font-size: 11px;
    color: #888;
    justify-content: flex-end;
    border-bottom: 1px solid var(--grey-background, #eee);
}

/* DAY COLUMNS */
.group-calendar__col {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--grey-background, #eee);
    min-width: 0;
}
.group-calendar__col:last-child {
    border-right: none;
}
.group-calendar__col--weekend .group-calendar__day-body {
    background: #fafafa;
}

/* DAY HEADER */
.group-calendar__day-header {
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--grey-background, #eee);
    gap: 2px;
}
.group-calendar__day-header--today .group-calendar__day-num {
    background: var(--btn-primary);
    color: #fff;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.group-calendar__weekday {
    font-size: 8px;
    text-transform: uppercase;
    color: #888;
}
.group-calendar__day-num {
    font-size: 15px;
    font-weight: 500;
}

/* DAY BODY */
.group-calendar__day-body {
    position: relative;
    height: 780px;
    flex: 1;
}
.group-calendar__hour-row {
    position: absolute;
    left: 0; right: 0;
    height: 80px;
    border-bottom: 1px solid var(--grey-background, #eee);
}
/* position hour rows */
.group-calendar__hour-row:nth-child(1) { top: 0px; }
.group-calendar__hour-row:nth-child(2) { top: 80px; }
.group-calendar__hour-row:nth-child(3) { top: 160px; }
.group-calendar__hour-row:nth-child(4) { top: 240px; }
.group-calendar__hour-row:nth-child(5) { top: 320px; }
.group-calendar__hour-row:nth-child(6) { top: 400px; }
.group-calendar__hour-row:nth-child(7) { top: 480px; }
.group-calendar__hour-row:nth-child(8) { top: 560px; }
.group-calendar__hour-row:nth-child(9) { top: 640px; }
.group-calendar__hour-row:nth-child(10) { top: 720px; }
.group-calendar__hour-row:nth-child(11) { top: 800px; }
.group-calendar__hour-row:nth-child(12) { top: 880px; }
.group-calendar__hour-row:nth-child(13) { top: 960px; }

/* TASK BLOCKS */
.group-task {
    position: absolute;
    min-height: 24px;
    border-radius: 6px;
    padding: 4px 6px;
    overflow: visible;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,.1);
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: opacity .15s, box-shadow .15s;
    z-index: 1;
	color: #fff;
	top: var(--task-top);
    height: var(--task-height);
    left: var(--task-left);
    width: var(--task-width);
    background: var(--task-color);
}

.group-task * {
	color: var(--white)
}

.group-task:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,.35);
	z-index: 10;
}

.group-task__content {
    overflow: hidden;
    height: 100%;
}

.group-task--full {
    cursor: not-allowed;
	background: #313131 !important;
}

.group-task--full:hover {
	box-shadow: none;
}

.group-task--past {
    cursor: not-allowed;
	opacity: .7;
}

.group-task--selected {
	box-shadow: 0 2px 8px rgba(0,0,0,.5);
	background: var(--btn-primary) !important;
}

.group-task__hover-info {
    display: none;
    position: absolute;
	background: #333;
    z-index: 100;
    border-radius: 6px;
    padding: 8px;
    min-width: 160px;
    top: 0;
    left: 105%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    color: #333;
    white-space: nowrap;
}

.group-task__hover-info .text-green,
.group-task__hover-info .text-green span {
	color: var(--main-green);
}

.group-task__hover-info .text-red,
.group-task__hover-info .text-red span {
	color: var(--text-red);
}

.group-task:hover .group-task__hover-info {
    display: block;
}

/* ========== GROUP RESPONSIVE ========== */
@media (max-width: 850px) {
    .group-calendar {
        grid-template-columns: 40px repeat(7, 1fr);
        font-size: 11px;
    }
    .group-calendar__time-slot {
        font-size: 10px;
        padding-right: 3px;
    }
    .group-task__time { display: none; }
}
@media (max-width: 480px) {
    .group-calendar {
        grid-template-columns: 40px repeat(3, 1fr);
    }
}