@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");

@keyframes spin {
	from {
		transform: rotate(0deg)
	}

	to {
		transform: rotate(365deg)
	}
}

@-webkit-keyframes spin {
	from {
		transform: rotate(0deg)
	}

	to {
		transform: rotate(365deg)
	}
}

html,
body,
.body-wrap {
	min-height: 100vh
}

body {
	font-family: 'Noto Sans', sans-serif;
	color: #4E565E
}

.body-wrap {
	display: grid;
	grid-template-rows: auto 1fr auto
}

html body .template-preview-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 180px;
	padding: 15px;
	top: auto;
	border-radius: 0 6px 0 0;
	border: none;
	background: #000;
	color: #fff
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	color: #2D363E;
	font-weight: 600
}

.btn {
	border-radius: 100px;
	font-weight: 700;
	font-size: 15px;
	border: none;
	transition: 140ms all ease-in-out;
	padding: 5px 16px
}

.btn .btn-sm {
	font-size: 13px;
	padding: 4px 14px
}

.btn .btn-lg {
	font-size: 16px;
	padding: 6px 20px
}

.btn:not(:disabled):not(.disabled):hover,
.btn:not(:disabled):not(.disabled):focus,
.btn:not(:disabled):not(.disabled):active {
	outline: none !important;
	box-shadow: none !important
}

.btn.btn-secondary {
	background: #dee4e7;
	color: #2D363E
}

.btn.btn-secondary:not(:disabled):not(.disabled):hover,
.btn.btn-secondary:not(:disabled):not(.disabled):focus,
.btn.btn-secondary:not(:disabled):not(.disabled):active {
	background: #cfd7dd;
	color: #22292f
}

.btn.btn-primary {
	background: #11a259;
	color: #fff
}

.btn.btn-primary:not(:disabled):not(.disabled):hover,
.btn.btn-primary:not(:disabled):not(.disabled):focus,
.btn.btn-primary:not(:disabled):not(.disabled):active {
	background: #16d073;
	color: #fff
}

.form-control {
	border-radius: 100px;
	border: 1px solid #dee4e7;
	color: #4E565E;
	transition: 140ms all ease-in-out
}

.form-control:focus {
	border-color: #cfd7dd;
	outline: none !important;
	box-shadow: none !important
}

.form-control.form-control-lg {
	font-size: 1rem
}

#loadingScreen {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.8);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	color: #2D363E;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 3px;
	opacity: 0;
	z-index: -1;
	pointer-events: none;
	visibility: hidden;
	transition: opacity 200ms ease-in-out
}

#loadingScreen .spin {
	display: block;
	margin: 0 auto 20px;
	width: 80px;
	animation: spin linear 4s reverse infinite;
	opacity: 0.6
}

#loadingScreen.loading {
	opacity: 1;
	z-index: 10;
	pointer-events: all;
	visibility: visible
}

.navbar.fixed-top {
	background: #090a0b;
	min-height: 64px
}

.navbar.fixed-top .nav-item .nav-link {
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	color: #fff;
	padding: 12px;
	display: block;
	position: relative;
	transition: opacity 350ms ease-ino-ut;
	opacity: 0.8;
	font-weight: 500
}

.navbar.fixed-top .nav-item .nav-link:after {
	content: "";
	position: absolute;
	right: 100%;
	bottom: 8px;
	left: 12px;
	height: 1px;
	background: #fff;
	opacity: .25;
	transition: all .35s ease-in-out
}

.navbar.fixed-top .nav-item .nav-link:hover:after,
.navbar.fixed-top .nav-item .nav-link:focus:after {
	right: 12px;
	opacity: .5
}

.navbar.fixed-top .navbar-brand img {
	height: 32px
}

.navbar.fixed-top .navbar-toggler {
	border: none;
	padding: 14px 15px;
	outline: none !important
}

.navbar.fixed-top .navbar-toggler .bar {
	background: #fff;
	height: 3px;
	width: 22px;
	border-radius: 100px;
	position: relative;
	top: 0;
	transition: 140ms all ease-in-out;
	opacity: 0.8
}

.navbar.fixed-top .navbar-toggler .bar:nth-of-type(2) {
	margin: 5px 0
}

.navbar.fixed-top .navbar-toggler:not(.collapsed) .bar:nth-of-type(1) {
	top: 8px;
	transform: rotate(45deg)
}

.navbar.fixed-top .navbar-toggler:not(.collapsed) .bar:nth-of-type(2) {
	opacity: 0
}

.navbar.fixed-top .navbar-toggler:not(.collapsed) .bar:nth-of-type(3) {
	top: -8px;
	transform: rotate(-45deg)
}

.page-header {
	padding: 64px 0 20px
}

.page-header .grid {
	max-width: 800px;
	margin: 0 auto;
	display: grid;
	grid-gap: 25px;
	padding: 40px 0
}

@media (min-width: 992px) {
	.page-header .grid {
		grid-template-columns: auto 1fr
	}
}

.page-header .grid .image {
	padding-right: 64px;
	position: relative
}

@media (min-width: 992px) {
	.page-header .grid .image:after {
		content: '';
		width: 4px;
		top: 10px;
		right: 20px;
		bottom: 10px;
		background: #f6f7f8;
		position: absolute
	}
}

.page-header .grid .text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative
}

.page-header .grid .text h1 {
	font-size: 32px;
	font-weight: 700
}

.page-header .grid .text p {
	font-size: 16px;
	line-height: 1.3
}

.navbar.subnav {
	background: #50c741 url(https://cdn.tebex.io/store/758598/templates/75674/assets/daae5b7a9eee79073957ae5a3a9a7e91ed7ee281.png) center center no-repeat;
	border-radius: 6px;
	padding: 0 15px
}

.navbar.subnav .nav-link {
	display: flex;
	align-items: center;
	font-weight: 700;
	color: #ecffdf;
	transition: 140ms all ease-in-out;
	height: 60px;
	padding: 0 14px
}

.navbar.subnav .nav-link img {
	margin-right: 8px;
	border-radius: 6px;
	height: 24px;
	width: 24px
}

.navbar.subnav .nav-link svg {
	fill: none;
	stroke: #d5f7bf;
	width: 24px;
	margin-right: 8px;
	transition: 140ms all ease-in-out
}

.navbar.subnav .nav-link b {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 100px;
	margin-left: 6px;
	padding: 1px 8px;
	font-size: 11px;
	font-weight: 800;
	display: inline-block
}

.navbar.subnav .nav-link.dropdown-toggle:after {
	display: none
}

.navbar.subnav .nav-item:hover .nav-link:not(:disabled):not(.disabled),
.navbar.subnav .nav-item:focus .nav-link:not(:disabled):not(.disabled),
.navbar.subnav .nav-item:active .nav-link:not(:disabled):not(.disabled),
.navbar.subnav .nav-item.show .nav-link:not(:disabled):not(.disabled) {
	color: #fff
}

.navbar.subnav .nav-item:hover .nav-link:not(:disabled):not(.disabled) svg,
.navbar.subnav .nav-item:focus .nav-link:not(:disabled):not(.disabled) svg,
.navbar.subnav .nav-item:active .nav-link:not(:disabled):not(.disabled) svg,
.navbar.subnav .nav-item.show .nav-link:not(:disabled):not(.disabled) svg {
	stroke: #fff
}

.navbar.subnav .dropdown-menu {
	border: none;
	background: #fff;
	box-shadow: rgba(0, 0, 0, 0.1) 0 4px 20px;
	margin: 0;
	border-radius: 0 0 6px 6px;
	padding: 6px 0
}

.navbar.subnav .dropdown-menu .dropdown-item {
	padding: 6px 14px;
	color: #4E565E;
	font-weight: 700;
	transition: 140ms all ease-in-out
}

.navbar.subnav .dropdown-menu .dropdown-item:hover,
.navbar.subnav .dropdown-menu .dropdown-item:focus,
.navbar.subnav .dropdown-menu .dropdown-item:active {
	color: #2D363E;
	background: #f6f7f8
}

.navbar.subnav .dropdown-menu .dropdown-item.active {
	background: #2D363E;
	color: #fff
}

.navbar.subnav #nav-currency .dropdown-menu {
	min-width: 0;
	width: 80px;
	text-align: center
}

.navbar.subnav #nav-cart .dropdown-menu {
	min-width: 300px;
	padding: 0
}

.navbar.subnav #nav-cart .dropdown-menu .package {
	padding: 15px;
	display: flex;
	align-items: center;
	border-bottom: #EDF0F2 1px solid;
	font-size: 14px;
	color: #4E565E
}

.navbar.subnav #nav-cart .dropdown-menu .package .price {
	margin-left: auto;
	font-weight: 600;
	padding-right: 4px
}

.navbar.subnav #nav-cart .dropdown-menu .package .remove {
	color: #fd5352
}

.navbar.subnav #nav-cart .dropdown-menu .package .remove svg {
	display: block;
	width: 14px
}

.navbar.subnav #nav-cart .dropdown-menu .checkout {
	padding: 15px
}

.navbar.subnav #nav-cart .dropdown-menu .checkout .total {
	padding-bottom: 10px;
	font-size: 14px;
	color: #4E565E;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: space-between
}

.navbar.subnav #nav-cart .dropdown-menu .checkout .total .right {
	color: #2D363E;
	font-size: 16px
}

.navbar.subnav .navbar-toggler {
	border: none;
	padding: 20px 15px;
	outline: none !important
}

.navbar.subnav .navbar-toggler .bar {
	background: #B4BEC5;
	height: 3px;
	width: 22px;
	border-radius: 100px;
	position: relative;
	top: 0;
	transition: 140ms all ease-in-out;
	opacity: 1
}

.navbar.subnav .navbar-toggler .bar:nth-of-type(2) {
	margin: 5px 0
}

.navbar.subnav .navbar-toggler:not(.collapsed) .bar:nth-of-type(1) {
	top: 8px;
	transform: rotate(45deg)
}

.navbar.subnav .navbar-toggler:not(.collapsed) .bar:nth-of-type(2) {
	opacity: 0
}

.navbar.subnav .navbar-toggler:not(.collapsed) .bar:nth-of-type(3) {
	top: -8px;
	transform: rotate(-45deg)
}

.card {
	border: none;
	background: #fff;
	border-radius: 6px;
	box-shadow: rgba(0, 0, 0, 0.3) 0 4px 18px
}

.card.card-dark {
	background: #EDF0F2;
	box-shadow: none
}

.category-cards {
	padding: 30px 0;
	margin: 0 -20px
}

@media (min-width: 768px) {
	.category-cards {
		flex-wrap: wrap;
		display: flex;
		flex-direction: row;
		justify-content: center
	}
}

.category-cards .category-wrap {
	flex: 0 1 100%
}

@media (min-width: 768px) {
	.category-cards .category-wrap {
		flex: 0 1 50%
	}
}

@media (min-width: 992px) {
	.category-cards .category-wrap {
		flex: 0 1 33.333%
	}
}

.category-cards .store-button {
	position: relative;
	overflow: hidden;
	display: block;
	padding: 0;
	height: 0;
	padding-bottom: calc(100% / 16 * 9);
	width: 100%;
	background: center center no-repeat;
	background-size: cover;
	border-radius: 8px;
	transition: 140ms all ease-in-out;
	opacity: 1
}

.category-cards .store-button:hover {
	transform: scale(0.9);
	opacity: .9
}

.return {
	background: #090a0b;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	padding: 20px;
	transition: 140ms all ease-in-out
}

.return svg {
	width: 18px
}

.return:hover,
.return:focus,
.return:active {
	color: #fff;
	text-decoration: none;
	box-shadow: rgba(0, 0, 0, 0.3) 0 4px 18px
}

.signed-in {
	align-items: center
}

.signed-in img {
	border-radius: 6px
}

.signed-in .media-body {
	line-height: normal;
	font-weight: 700
}

.signed-in .media-body .sm {
	font-size: 12px;
	color: #4E565E;
	text-transform: uppercase;
	padding-bottom: 2px
}

.signed-in .media-body .ign {
	font-size: 16px;
	color: #2D363E
}

@media (min-width: 768px) {
	.modules .featured-package {
		display: flex;
		align-items: center
	}
}

.modules .featured-package img {
	width: 120px;
	display: block
}

.modules .featured-package .text {
	padding-left: 25px
}

.modules .featured-package .text .name {
	color: #2D363E;
	font-weight: 700;
	font-size: 16px
}

.modules .featured-package .text .price {
	display: flex;
	align-items: flex-end;
	font-size: 16px;
	color: #2D363E;
	font-weight: 700;
	padding-bottom: 16px
}

.modules .featured-package .text .price small {
	font-weight: 700
}

.modules .featured-package .text .price .discount {
	font-style: italic;
	text-decoration: line-through;
	color: #fd5352;
	font-size: 14px;
	padding-right: 6px
}

.modules .latest-payments ul {
	padding: 10px 0 0;
	margin: 0
}

@media (min-width: 768px) {
	.modules .latest-payments ul {
		display: flex;
		flex-wrap: wrap
	}
}

.modules .latest-payments ul li {
	padding: 0 25px 25px 0;
	display: flex;
	align-items: center
}

.modules .latest-payments ul li img {
	border-radius: 6px
}

.modules .latest-payments ul li .ign {
	color: #9daab3;
	font-size: 16px;
	padding-left: 10px
}

.category-title {
	background: #208ade url(https://cdn.tebex.io/store/758598/templates/75674/assets/daae5b7a9eee79073957ae5a3a9a7e91ed7ee281.png) center center no-repeat;
	margin: 20px 0 10px;
	border-radius: 6px;
	padding: 20px 30px 24px;
	box-shadow: inset rgba(0, 0, 0, 0.12) 0 -4px 0
}

@media (min-width: 992px) {
	.category-title {
		margin: 0 0 16px
	}
}

.category-title h2 {
	margin: 0;
	line-height: normal;
	font-size: 28px;
	color: #fff
}

.packages-row .package {
	padding: 30px 20px;
	border-radius: 6px
}

@media (min-width: 768px) {
	.packages-row .package {
		padding: 10px 20px;
		display: flex;
		align-items: center
	}
}

.packages-row .package .name {
	color: #2D363E;
	font-weight: 700
}

.packages-row .package .price {
	margin-left: auto;
	font-weight: 700;
	margin-bottom: 10px
}

@media (min-width: 768px) {
	.packages-row .package .price {
		margin-bottom: 0;
		text-align: right
	}
}

.packages-row .package .price .discount {
	color: #fd5352;
	font-size: 13px;
	font-style: italic;
	text-decoration: line-through
}

.packages-row .package .price small {
	padding-left: 5px;
	font-weight: 700
}

@media (min-width: 768px) {
	.packages-row .package .button {
		width: 140px;
		text-align: right
	}
}

.packages-row .package:nth-of-type(odd) {
	background: #f6f7f8
}

.packages-image {
	display: grid;
	grid-gap: 15px
}

@media (min-width: 768px) {
	.packages-image {
		grid-template-columns: minmax(33.333%, auto) minmax(33.333%, auto) minmax(33.333%, auto)
	}
}

.packages-image .package {
	padding: 20px 20px;
	text-align: center;
	border-radius: 6px
}

.packages-image .package .image {
	display: block;
	margin-bottom: 10px
}

.packages-image .package .image img {
	max-width: 100%
}

@media (max-width: 768px) {
	.packages-image .package .image img {
		max-width: 160px
	}
}

.packages-image .package .name {
	color: #2D363E;
	font-weight: 700
}

.packages-image .package .price {
	margin-left: auto;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: normal;
	margin-top: 6px
}

.packages-image .package .price .discount {
	color: #fd5352;
	font-size: 13px;
	font-style: italic;
	line-height: 13px;
	text-decoration: line-through
}

.packages-image .package .price small {
	padding-left: 5px;
	font-weight: 700
}

.packages-image .package:nth-of-type(even) {
	background: #f6f7f8
}

.modal-content {
	border: none;
	box-shadow: rgba(0, 0, 0, 0.3) 0 4px 18px;
	background: #fff;
	border-radius: 6px;
	padding: 15px
}

.modal-content .modal-header {
	border: none;
	background: #EDF0F2;
	font-weight: 600;
	border-radius: 6px;
	padding: 20px;
	color: #2D363E;
	display: flex;
	align-items: center;
	justify-content: space-between
}

.modal-content .modal-header .close {
	color: #2D363E;
	transition: 140ms all ease-in-out;
	outline: none;
	display: block
}

.modal-content .modal-header .close:hover,
.modal-content .modal-header .close:focus,
.modal-content .modal-header .close:active {
	color: #fd5352
}

.modal-content .modal-header .close svg {
	width: 18px;
	display: block
}

.modal-content .modal-footer {
	border: none;
	background: #EDF0F2;
	border-radius: 6px;
	padding: 20px;
	flex-wrap: wrap;
	margin: 0 10px 10px
}

.modal-content .modal-footer .price {
	color: #4E565E
}

.modal-content .modal-footer .price small {
	font-weight: 600
}

.modal-content .modal-footer #gift-form {
	flex: 0 1 100%;
	padding-top: 10px
}

.modal-content .modal-footer #gift-form .input-group {
	max-width: 400px;
	margin-left: auto
}

.modal-content img {
	max-width: 100%
}

#checkout .hidden {
	display: none
}

#checkout hr {
	border: none;
	height: 2px;
	background: #f6f7f8;
	border-radius: 100px;
	margin: 30px 0
}

#checkout .checkout-title .amount {
	font-size: 16px;
	padding: 4px 12px;
	background: #f6f7f8;
	border-radius: 100px
}

#checkout .checkout-title .amount small {
	font-weight: 700
}

#checkout .page-header {
	display: none
}

#checkout .text-danger {
	color: #e2914b !important;
	padding: 10px 15px;
	border-radius: 6px;
	background: #f8eee5
}

#checkout #confirm-account .media-body {
	line-height: normal;
	font-weight: 700
}

#checkout #confirm-account .media-body .sm {
	font-size: 12px;
	color: #4E565E;
	text-transform: uppercase;
	padding-bottom: 2px
}

#checkout #confirm-account .media-body .lg {
	font-size: 16px;
	color: #2D363E
}

#checkout .redeemed .badge {
	background: #EDF0F2;
	color: #2D363E;
	font-size: 14px;
	padding: 4px 12px;
	border-radius: 100px;
	display: flex;
	align-items: center
}

#checkout .redeemed .badge svg {
	width: 16px;
	color: #fd5352;
	margin-left: 5px
}

#checkout .package .price {
	text-align: left;
	margin-left: 0
}

#checkout .package .option-list {
	padding: 4px 0 0
}

#checkout .package .option-list .option {
	display: flex;
	align-items: center;
	font-size: 14px;
	padding-bottom: 4px;
	font-weight: normal
}

#checkout .package .option-list .option svg {
	height: 14px;
	margin-right: 5px;
	color: #B4BEC5
}

#checkout .package .package-options {
	display: flex;
	align-items: center;
	justify-content: space-between
}

#checkout .package .package-options input {
	width: 70px;
	text-align: center;
	font-weight: bold
}

#checkout .package .package-options .buttons {
	display: flex;
	align-items: center
}

#checkout .package .package-options .buttons svg {
	height: 22px;
	display: block
}

#checkout label {
	font-weight: 700;
	color: #4E565E;
	letter-spacing: 1px;
	font-size: 14px;
	text-transform: uppercase
}

#checkout .privacyStatement input[type="checkbox"],
#checkout .checkbox input[type="checkbox"] {
	position: absolute;
	visibility: hidden
}

#checkout .privacyStatement input[type="checkbox"]:checked+label:before,
#checkout .checkbox input[type="checkbox"]:checked+label:before {
	background: #2D363E;
	border-color: #2D363E;
	color: #fff
}

#checkout .privacyStatement label,
#checkout .checkbox label {
	display: block !important;
	padding-left: 30px;
	position: relative;
	font-weight: 400 !important;
	letter-spacing: 0px;
	color: #4E565E;
	cursor: pointer;
	font-size: 15px !important;
	text-transform: none
}

#checkout .privacyStatement label a,
#checkout .checkbox label a {
	color: #2D363E;
	position: relative;
	transition: 140ms all ease-in-out;
	text-decoration: none !important
}

#checkout .privacyStatement label a:after,
#checkout .checkbox label a:after {
	content: '';
	position: absolute;
	border-bottom: #cfd7dd dashed 1px;
	bottom: -3px;
	left: 0;
	right: 0;
	transition: 140ms all ease-in-out
}

#checkout .privacyStatement label a:hover,
#checkout .checkbox label a:hover {
	color: #000
}

#checkout .privacyStatement label a:hover:after,
#checkout .checkbox label a:hover:after {
	border-color: #000
}

#checkout .privacyStatement label:before,
#checkout .checkbox label:before {
	font-weight: 900;
	content: '\2713';
	position: absolute;
	top: 0px;
	left: 0;
	border: 2px solid #dee4e7;
	color: transparent;
	transition: 140ms all ease-in-out;
	font-size: 11px;
	line-height: 12px;
	padding: 3px;
	width: 22px;
	text-align: center;
	vertical-align: middle;
	border-radius: 100%;
	margin-right: 6px
}

#checkout .privacyStatement label:hover:before,
#checkout .checkbox label:hover:before {
	color: #4E565E
}

#checkout .gateways .payment-gateway input {
	position: absolute;
	width: 0px;
	height: 0px;
	visibility: hidden
}

#checkout .gateways .payment-gateway label {
	border: transparent 2px solid;
	border-radius: 6px;
	padding: 10px 14px;
	transition: 140ms all ease-in-out;
	margin-right: 16px;
	margin-bottom: 16px;
	cursor: pointer;
	text-align: center
}

#checkout .gateways .payment-gateway label img {
	border-radius: 6px;
	display: block;
	margin-bottom: 5px
}

#checkout .gateways .payment-gateway label:hover {
	background: #EDF0F2
}

#checkout .gateways .payment-gateway input:checked~label {
	background: #dee4e7;
	color: #2D363E
}

#checkout #pay .form-group {
	text-align: right
}

.page-footer {
	background: #090a0b;
	color: rgba(255, 255, 255, 0.7);
	padding: 20px 0
}

.page-footer p {
	margin: 0;
	font-size: 14px;
	line-height: normal
}

.notification .alert {
	color: #e2914b !important;
	margin-top: 20px !important;
	padding: 10px 15px !important;
	border-radius: 6px !important;
	background: #f8eee5 !important
}

tebex-footer {
  --tebex-legal-footer-background-color: #090a0b;
  --tebex-legal-footer-text-color: rgb(174, 174, 174);
  --tebex-legal-footer-border-color: #202326;
  --tebex-legal-footer-max-width: calc(100% - 30px);
  --tebex-legal-footer-logo-color: rgba(255,255,255,0.6);
}

@media (min-width: 576px) { 
    tebex-footer { --tebex-legal-footer-max-width: 510px; }
}

@media (min-width: 768px) { 
    tebex-footer { --tebex-legal-footer-max-width: 690px; }
}

@media (min-width: 992px) {
    tebex-footer { --tebex-legal-footer-max-width: 930px; }
}

@media (min-width: 1200px) {
    tebex-footer { --tebex-legal-footer-max-width: 1110px; }
}

/* New category section */

.gc__categories {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.gc__category-button {
    padding: 1rem 0;
    font-size: 2rem;
    min-height: 16rem;
    border-radius: .4rem;
    background: #15e5f4 url(https://cdn.tebex.io/store/758598/templates/75674/assets/daae5b7a9eee79073957ae5a3a9a7e91ed7ee281.png) repeat;
    position: relative;
    transition: 120ms all ease-in-out;
    opacity: 1;
    border-bottom: 6px solid #00000024;
    display: block;
    z-index: 1;
    flex: 0 1 100%;
}

.gc__category-name {
    position: absolute;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    color: #fff;
    font-weight: bold;
    width: max-content;
    text-shadow: rgb(0 0 0 / 37%) 0px 1px 9px;
}

.gc__category-button .gc__category-decoration {
    position: absolute;
    top: 70px;
    left: 15px;
    right: 15px;
    bottom: -6px;
    background: bottom center/contain no-repeat;
    margin: 0;
}

.gc__category-button:hover {
    transform: scale(0.95);
    opacity: 0.9
}

@media (min-width: 992px) {
    .gc__category-button {
        flex: 1 1 30%;
    }

    .gc__categories[data-divide4="true"] .gc__category-button {
        flex: 1 1 45%;
    }
}

