:root {
  --off-black: #0E112F;
}

body {line-height: 1; font-size: 16px; line-height: 1.6; font-family: 'Sharp-Grotesk-Light-20';}
h1 {line-height: 1; font-family: 'Sharp-Grotesk-Medium-25';}
h2 {line-height: 1;}
h3 {line-height: 1;}
h4 {line-height: 1;}
h5 {line-height: 1;}
p:last-child {margin-bottom: 0;}

/* General */
.no-scroll {height: 100vh; overflow-y: hidden;}



.wrapper {max-width: 90vwv; margin: 0 auto;}
.wrapper-sml {max-width: 65%; margin: 0 auto;}

/* Header */

/* Page Sections */

header {position: sticky; top: 0; z-index: 999; width: 100%; background: #fff;}
header .logo-block {display: block; font-family: 'Sharp-Grotesk-SemiBold-25', sans-serif; font-size: 30px; line-height: 1; margin: auto; color: #0E112F;}

.header-top {display: flex; margin: 0 40px;}
.header-bottom {display: grid; grid-template-columns: 370px 1fr 300px 220px; grid-gap: 20px; align-items: flex-start; margin: 0 40px;}
.header-bottom a {display: inline-block; box-sizing: border-box; border: 1px solid #E1E1E1; text-align: center; border-radius: 50vw; padding: 16px 20px 12px; font-family: 'SharpSans'; font-weight: 600; font-size: 17px; line-height: 20px; transition: 0.3s;}
.header-bottom a:hover {background: #E1E1E1;}

.header-left, .header-right {display: flex; flex: 1; align-items: center;}
.header-right {display: flex; justify-content: flex-end;}
.header-right .quick-links {display: flex; align-items: center;}
.header-right .quick-links a {display: inline-block; position: relative; padding: 37px 25px 32px; font-family: 'SharpSans'; font-weight: 600; font-size: 18px; line-height: 21px;}
.header-right .quick-links .cart {padding: 0; width: 50px; height: 50px; box-sizing: border-box; border: 2px solid #E1E1E1; border-radius: 50vw; background: #E1E1E100; position: relative; transition: 0.3s;}
.header-right .quick-links .cart::after {content: ''; display: block; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 14px; height: 16px; background: #000; mask-size:contain; mask-repeat:no-repeat; mask-position: center; mask-image:url('/img/cart-icon.svg');}
.header-right .quick-links .cart:hover {background: #E1E1E1;}

.hamburger {position: relative; display: block; width: 39px; height: 12px;}
.hamburger span {width: 39px; display: block; height: 2px; background: #000; border-radius: 50px; position: absolute;}
.hamburger span:first-child {top: 0px;}
.hamburger span:nth-child(2) {top: 5px; width: 31px;}
.hamburger span:last-child {bottom: 0;}


.shopcats-dd {position:relative; width:100%; z-index: 1;}

.shopcats-dd__btn {width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 19px 20px 14px; border: 0; background: #FAFAFA; border-radius: 50vw; cursor: pointer; text-align: left; position: relative; line-height: 17px; font-size: 17px; font-weight:600; color:var(--off-black); font-family: 'SharpSans'; box-sizing: border-box;}
.shopcats-dd__btn::after {font-family: "Nioicon"; content: ""; display: block; font-size: 25px; color: var(--off-black); line-height: 1; position: absolute; right: 15px; top: 47%; transform: translateY(-50%) rotate(0deg);}

.shopcats-dd__panel {position: absolute;}

.shopcats-dd__list{ list-style:none; margin:0; padding:10px 0; overflow:auto; max-height:inherit; outline:none;}

.shopcats-dd__option{ padding:14px 18px; font-weight:650; color:#0b1026; cursor:pointer; user-select:none;}

.shopcats-dd__option:hover,.shopcats-dd__option.is-active{ background:#f4f4f4;}

.shopcats-dd__btn:focus{outline:none;}
.shopcats-dd__btn:focus-visible{box-shadow:0 0 0 3px rgba(11,16,38,.20);}

.shopcats-dd.is-open .shopcats-dd__btn{background:#eeeeee;}

.search-bar {padding-bottom: 46px;}
.search-bar form {position: relative;}
.search-bar form button {display: block; position: absolute; top: 48%; transform: translateY(-50%); right: 15px; width: 25px; height: 25px; outline: 0; border: 0; padding: 0;}
.search-bar form button::after {font-family: "Nioicon"; content: ""; display: block; font-size: 25px; color: var(--off-black); line-height: 1; position: absolute; top: 0; left: 0;}
.search-bar input {width: 100%; padding: 16px 20px 10px; border: 0; background: #FAFAFA; border-radius: 50vw; cursor: pointer; text-align: left; position: relative; line-height: 24px; font-size: 17px; font-weight: 600; color: var(--off-black); font-family: 'SharpSans'; box-sizing: border-box; outline: 0;}
.search-bar input::placeholder {color: var(--off-black);}



#loader {display: none; position: absolute; left: 50%; top: 50%; z-index: 1; width: 30px; height: 30px; transform: translate(-50%, -50%); border: 5px solid #f3f3f3; border-radius: 50%; border-top: 5px solid #3498db; -webkit-animation: spin 2s linear infinite; animation: spin 2s linear infinite; transition: 0.3s; opacity: 1;}

@-webkit-keyframes spin { 0% { -webkit-transform: translate(-50%, -50%) rotate(0deg); } 100% { -webkit-transform: translate(-50%, -50%) rotate(360deg); }}

@keyframes spin { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(360deg); }}

.animate-bottom { position: relative; -webkit-animation-name: animatebottom; -webkit-animation-duration: 1s; animation-name: animatebottom; animation-duration: 1s}

@-webkit-keyframes animatebottom { from { bottom:-100px; opacity:0 } to { bottom:0px; opacity:1 }}
@keyframes animatebottom { from{ bottom:-100px; opacity:0 } to{ bottom:0; opacity:1 }}

/* Footer */
