* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
	--hue: 223;
	--bg: hsl(0,0%,100%);
	--fg: hsl(var(--hue),10%,10%);
	--trans-dur: 0.3s;
	--trans-timing1: cubic-bezier(0.37,0,0.63,1);
	--trans-timing2: cubic-bezier(0.34,1.56,0.64,1);
	--orange: #ff8200;
	font-size: calc(16px + (24 - 16) * (100vw - 320px) / (2560 - 320));
}
.orange {
	color: var(--orange);
}
button,
input {
	color: var(--fg);
	font: 1em/1.5 Nunito, sans-serif;
	transition:
		background-color var(--trans-dur) var(--trans-timing1),
		box-shadow var(--trans-dur) var(--trans-timing1),
		color var(--trans-dur) var(--trans-timing1);
}
h3 {
	font-size: 1.25em;
	font-weight: 600;
}
body {
  background: #fff;
  font: 12px/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: rgba(0,0,0,0.8);
}
.profile-page {
  display: flex;
  min-height: 100vh;
}
@media (max-width: 990px) {
  .profile-page {
    padding-top: 0;
  }
}
.profile-page .content {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  width: 100%;
  position: relative;
  z-index: 2;
  margin: auto;
  padding: 2rem;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 15px 35px rgba(50,50,93,0.1), 0 5px 15px rgba(0,0,0,0.07);
}
@media (max-width: 990px) {
  .profile-page .content {
    border-radius: 10px;
  }
}
.profile-page .content__cover {
  position: relative;
  background: linear-gradient(150deg, #1d8cf8 20%, #3358f4 100%);
}
.profile-page .content__logo {
  width: 8rem;
  height: 8rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, 50%);
  background: #fafafa;
  background-size: cover;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(50,50,93,0.1), 0 5px 15px rgba(0,0,0,0.07);
}
.profile-page .content__logo img {
	width: 65%;
    margin: 20% auto;
    display: block;
}
@media (max-width: 990px) {
  .profile-page .content__logo {
    width: 8rem;
    height: 8rem;
  }
}
.profile-page .content__title {
  margin-top: 5rem;
  text-align: center;
  order: 1;
}
.profile-page .content__title h1 {
  margin-bottom: 0.1rem;
  font-size: 2rem;
}
@media (max-width: 990px) {
  .profile-page .content__title h1 {
    font-size: 1.8rem;
  }
}
.profile-page .content__title span {
  font-size: 1.2rem;
}
@media (max-width: 990px) {
  .profile-page .content__title span {
    font-size: 0.9rem;
  }
}
.profile-page .content__description {
  margin-top: 2.5rem;
  text-align: center;
  order: 2;
}
@media (max-width: 990px) {
  .profile-page .content__description {
    margin-top: 1.5rem;
    order: 3;
  }
}
.profile-page .content__description p {
  margin-bottom: 1rem;
  font-size: 1rem;
}
@media (max-width: 990px) {
  .profile-page .content__description p {
    font-size: 1rem;
  }
}
.profile-page .content__button {
  margin: 0rem auto 0rem;
  text-align: center;
  order: 4;
}
@media (max-width: 990px) {
  .profile-page .content__button {
    margin: 1.5rem 0 2.2rem;
  }
}
.profile-page .content__button .button {
    background: -webkit-linear-gradient(-90deg, #349dff 30%, #1564FC 100%);
    box-shadow: inset 1px 1px 1px 1px #349dff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 22px;
    color: white;
    text-align: center;
    padding: 16px 100px;
    display: block;
    align-items: center;
    cursor: pointer;
    float: left;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.profile-page .content__button .button::before {
    content: "";
    position: absolute;
    z-index: -2;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-color: #349dff;
    background-repeat: no-repeat;
    background-size: 50% 50%, 50% 50%;
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
    background-image: linear-gradient(#1564FC, #349dff);
    -webkit-animation: rotate 4s linear infinite;
    animation: rotate 4s linear infinite;
}
.profile-page .content__button .button::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 4px;
    top: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    background: #50AAFD;
    border-radius: 30px;
}
@-webkit-keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}
.profile-page .content__button .button:hover {
  color: #fff;
}
@media (max-width: 990px) {
  .profile-page .content__button .button {
    padding: 1rem 1.4rem;
    font-size: 0.9rem;
	width: 100%;
  }
}
.cd__main{
   display: block !important;
   padding: 0 20px ;
}
@media only screen and (min-width: 1360px){
    .cd__main{
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto; 
    }
}
.grid {
	display: grid;
	grid-gap: 1.2em;
	margin-bottom: 2.25em;
}

.item-input,
.item-label {
	box-shadow: 0 0 0 1px hsl(var(--hue),10%,80%) inset;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
.item-input {
	border-radius: 50%;
	position: absolute;
	top: 0.875em;
	right: 1em;
	width: 1em;
	height: 1em;
	-webkit-appearance: none;
	appearance: none;
}
[dir="rtl"] .item-input {
	right: auto;
	left: 1em;
}
.item-input:before {
	background-color: hsl(0,0%,100%);
	border-radius: inherit;
	box-shadow: 0 0 0 0.3em hsl(var(--hue),90%,50%);
	content: "";
	display: block;
	position: absolute;
	top: 0.3em;
	left: 0.3em;
	width: 0.4em;
	height: 0.4em;
	transition: transform var(--trans-dur) var(--trans-timing1);
	transform: scale(0);
}
.item-label {
	border-radius: 0.375em;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 0.75em 1em;
	padding-inline-end: 2em;
	position: relative;
	transition:
		background-color var(--trans-dur) var(--trans-timing1),
		box-shadow var(--trans-dur) var(--trans-timing1);
}
.item-label img {
	width: 22%;
	margin: 0 auto;
}
.item-label:hover {
	background-color: hsl(var(--hue),10%,95%);
}
.item-label .icon {
	color: var(--fg);
	position: absolute;
	top: 0.75em;
	left: 1em;
	margin: 0.25em 0;
}
.item-label:has(.icon) {
	padding-inline-start: 2.75em;
}
[dir="rtl"] .item-label .icon {
	right: 1em;
	left: auto;
}
.item-name,
.item-price,
.item-label .icon {
	transition: color var(--trans-dur) var(--trans-timing1);
}
.item-name,
.item-price {
	color: var(--fg);
}
.item-name {
	margin-inline-end: 0.5em;
}
.item-price {
	display: inline-block;
	font-weight: 500;
	margin-top: 0.75em;
}
/* `:checked` state */
.item-input:checked:before {
	transform: scale(1);
	transition-timing-function: var(--trans-timing2);
}
.item-input:checked ~ .icon,
.item-input:checked ~ .item-info .item-name,
.item-input:checked ~ .item-info .item-shipping,
.item-input:checked ~ .item-price {
	color: hsl(var(--hue),90%,50%);
}
.item-label:has(.item-input:checked) {
	background-color: hsl(var(--hue),90%,95%);
	box-shadow: 0 0 0 1px hsl(var(--hue),90%,50%) inset;
}

/* Tablet, Desktop */
@media (min-width: 320px) {
	.grid-2 {
		grid-template-columns: repeat(2,1fr);
	}
	.grid-3 {
		grid-template-columns: repeat(3,1fr);
	}
}
@media (max-width: 591px) {
	.item-label img {
		width: 40%;
	}
}

.profile-page .content__error {
  margin-top: 0.5rem;
  text-align: center;
  order: 5;
}

.profile-page .content__error p {
  color: #f5bb44;
  font-size: 14px;
}

