:focus {
  outline-color: transparent;
  outline-style: none;
}

a.save-design, a.buy-but{
	display:inline-block;
	padding: 10px 12px;
	gap: 10px;
	border-radius: 8px;
	border-width: 2px;
	border: 2px solid var(--rojo-1);
	background: var(--gris-1);
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	color: var(--gris-7);	
}
a.save-design:hover{
	color: var(--rojo-1);	
}
a.buy-but{
	border: 2px solid var(--rojo-1);
	background: var(--rojo-1);
	color: var(--gris-1);
}
a.buy-but:hover{
	border: 2px solid var(--rojo-2);
	background: var(--rojo-2);
}

a.icon-help, a.icon-help img {
	width: 20px;
	height: 20px;
}
a.icon-help:hover img{
	filter: brightness(0) saturate(100%) invert(25%) sepia(49%) saturate(5228%) hue-rotate(352deg) brightness(98%) contrast(95%);
}

input.upload-file {
  visibility: hidden;
  position: absolute;  
}
	.checkbox-w-nzi {
		display: flex;
	}
  .checkbox-w-nzi .checkbox {
    --bg: #EDEFF2;
    --brdr: #0A0D12;
    --brdr-actv: #F42F1C;
    --brdr-hovr: #B4B4B4;
    --dur: calc((var(--size, 2)/2) * 0.6s);
    display: inline-block;
    width: calc(var(--size, 1) * 20px);
    position: relative;
  }
  
  .checkbox-w-nzi .checkbox:after {
    content: "";
    width: 100%;
    padding-top: 100%;
    display: block;
  }
  .checkbox-w-nzi .checkbox > * {
    position: absolute;
  }
  .checkbox-w-nzi .checkbox input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    background-color: var(--bg);
    border-radius: calc(var(--size, 1) * 4px);
    border: calc(var(--newBrdr, var(--size, 1)) * 1px) solid;
    color: var(--newBrdrClr, var(--brdr));
    outline: none;
    margin: 0;
    padding: 0;
    transition: all calc(var(--dur) / 3) linear;
  }
  .checkbox-w-nzi .checkbox input:hover,
  .checkbox-w-nzi .checkbox input:checked {
    --newBrdr: calc(var(--size, 1) * 2);
  }
  .checkbox-w-nzi .checkbox input:hover {
    --newBrdrClr: var(--brdr-hovr);
  }
  .checkbox-w-nzi .checkbox input:checked {
    --newBrdrClr: var(--brdr-actv);
    transition-delay: calc(var(--dur) /1.3);
  }
  .checkbox-w-nzi .checkbox input:checked + svg {
    --dashArray: 16 93;
    --dashOffset: 109;
  }
  .checkbox-w-nzi .checkbox svg {
    fill: none;
    left: 0;
    pointer-events: none;
    stroke: var(--stroke, var(--border-active));
    stroke-dasharray: var(--dashArray, 93);
    stroke-dashoffset: var(--dashOffset, 94);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2px;
    top: 0;
    transition: stroke-dasharray var(--dur), stroke-dashoffset var(--dur);
  }
  .checkbox-w-nzi .checkbox svg,
  .checkbox-w-nzi .checkbox input {
    display: block;
    height: 100%;
    width: 100%;
  }

@media screen and (min-width: 60px) and (max-width: 700px) {
	.checkbox-w-nzi .checkbox {
		width: calc(var(--size, 1) * 30px);
	}
	a.icon-help, a.icon-help img {
		width: 30px;
		height: 30px;
	}

}

