/* || General styles */

:root { --pantone152c: #e57200; --slorange: var(--pantone152c); --border-color-light: #e0e0e0; --border-color-dark: #303030;}
html { font-family: "Roboto", sans-serif; }
body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1 0 auto; }
h1, h2, h3, h4, h5, h6 { line-height: 1.6; }
sub { bottom: 0; }
img { height: auto; max-width: 100%; }
img.full-width { width: auto; }
hr { background-color: var(--border-color-light); border: none; height: 1px; margin: 0; overflow: hidden; }
:is(hr, .divider).dark { background-color: var(--border-color-dark); }
.slorange { background-color: var(--slorange) !important; }
.slorange-text { color: var(--slorange) !important; }
.main-gradient { background: linear-gradient(white, white 90%, #f5f5f5); }
.font-300 { font-weight: 300 !important }
.font-500 { font-weight: 500 !important }
.container.container-small { max-width: 980px; }
.hoverable-light:hover { background-color:rgba(0,0,0,0.04) !important; }
.uppercase { text-transform: uppercase !important; }
.no-wrap { white-space: nowrap; }

/* || Materialize additions */
.preloader-wrapper.tiny { width: 24px; height: 24px; }
.active .spinner-layer.spinner-white { border-color: #ffffff; }

.toast { border-radius: 10px; }
@media only screen and (max-width: 600px) {
    .toast { width: calc(100vw - 20px); margin: auto auto 10px auto; }
}
span.badge.new { border-radius: 4px; }
blockquote { border-left: 5px solid var(--slorange) !important; font-style:italic; }

ul, ol { padding-left:1.1em; }

.chip, .chip:focus { background-color: #e4e4e4; color: rgba(0,0,0,0.6); vertical-align: bottom; }
.chip.active{color: white; background-color: var(--slorange); }
.chip.small-chip { height: 22px; line-height: 22px; }
.chip .bank-number { height: 100%; background-color: #5c5c5c; color: white; display: inline-block; width: 32px; margin-right: -12px; text-align: center; border-radius: 16px; margin-left: 6px;}

.input-field iconify-icon.prefix { font-size: 24px; width: 32px; }

.circle { border-radius: 9990px !important; }
.modal { max-height: 88%; }

.indicator { background-color:var(--slorange) !important; }

.flow-text { font-weight: 300; }
@media only screen and (min-width: 630px) {
    .flow-text { font-size: 1.4rem; }
}

@media only screen and (max-width: 601px) {
    .modal { width: 100%; }
}

.tabs .tab a:focus, .tabs .tab a:focus.active { background-color: transparent; }

.btn, .btn-flat { display: inline-flex; align-items: center; text-transform: none; border-radius: 5px; justify-content: center; position: relative; }
:is(.btn, .btn-flat) iconify-icon { font-size: 18.5px }
:is(.btn, .btn-flat).btn-large iconify-icon { font-size: 24px; }
:is(.btn,.btn-flat).icon-left { padding-left: 44.5px; }
:is(.btn,.btn-flat).icon-left iconify-icon { position: absolute; left: 16px; }
:is(.btn,.btn-flat).icon-right { padding-right: 44.5px; }
:is(.btn,.btn-flat).icon-right iconify-icon { position: absolute; right: 16px; }
.btn.btn-large.icon-left { padding-left: 56.5px; }
.btn.btn-large.icon-left iconify-icon { left: 20px; }
.btn.btn-large.icon-right { padding-right: 56.5px; }
.btn.btn-large.icon-right iconify-icon { right: 20px; }
:is(.btn, .btn-flat).btn-circle { border-radius: 999px; }

/* || Grid system */

.grid-3-2-1, .grid-2-2-1, .grid-2-1-1 { display: grid; grid-gap: 1.5rem; grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media only screen and (min-width: 601px) {  /*schermo medio*/
    .grid-3-2-1, .grid-2-2-1 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media only screen and (min-width: 993px) {  /*schermo largo*/
    .grid-3-2-1 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid-2-1-1 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* || Flex system */

.flex-5-3-2, .flex-4-3-2, .flex-3-2-1, .flex-3-2-2, .flex-2-2-2, .flex-2-2-1 { display: flex; gap: 1.5rem; flex-wrap: wrap; align-content: center; }
:is(.flex-5-3-2, .flex-4-3-2, .flex-3-2-1, .flex-3-2-2, .flex-2-2-2, .flex-2-2-1) > * { flex-grow: 0; flex-shrink: 1; }
/* schermo piccolo*/
:is(.flex-3-2-1, .flex-2-2-1) > * { flex-basis: 100%; } /* 1 colonna */
:is(.flex-5-3-2, .flex-2-2-2, .flex-4-3-2, .flex-3-2-2) > * { flex-basis: calc(50% - 0.75rem); } /* 2 colonne */
/*schermo medio*/
@media only screen and (min-width: 601px) {
    :is(.flex-5-3-2, .flex-4-3-2) > * { flex-basis: calc(33.33% - 1rem); } /* 3 colonne */
    :is(.flex-3-2-1, .flex-2-2-1, .flex-3-2-2) > * { flex-basis: calc(50% - 0.75rem); } /* 2 colonna */
}
/*schermo largo*/
@media only screen and (min-width: 993px) {
    .flex-5-3-2 > * { flex-basis: calc(20% - 1.2rem); } /* 5 colonne */
    .flex-4-3-2 > * { flex-basis: calc(25% - 1.125rem); } /* 4 colonne */
    :is(.flex-3-2-1, .flex-3-2-2) > * { flex-basis: calc(33.33% - 1rem);} /* 3 colonne */
    .flex-2-2-1 > * { flex-basis: calc(50% - 0.75rem); } /* 2 colonne */
}

/* || Outlines */

.outline-slorange { border: 1px solid var(--slorange); }
.outline-white { border: 1px solid #ffffff; }
.outline-blue { border: 1px solid #2196f3; }
.outline-light-blue-darken-1 { border: 1px solid #039be5; }
.outline-yellow-darken2 { border: 1px solid #fbc02d; }
.outline-red { border: 1px solid #f44336; }
.outline-adaptive { border: 1px solid #ffffff85; }


/* || Forms */

.input-field input:focus + label, .input-field textarea:focus + label { color: var(--slorange) !important; }
.input-field input:focus, .input-field textarea:focus { border-bottom: 1px solid var(--slorange) !important; box-shadow: 0 1px 0 0 var(--slorange) !important; }
input[type=email].valid:not(.browser-default) { border-bottom: 1px solid #9e9e9e; box-shadow: none; }
[type="checkbox"].filled-in:checked + span:not(.lever)::after { background-color: #000; border: 2px solid #000; }
.dropdown-content li > span { color: #424242; }
select.browser-default { background-color:transparent; border: none; border-bottom: 1px solid #9e9e9e; font-size: 16px; padding: 0px; }

/* || Spinner animation */

.spin { -moz-animation: spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; -webkit-animation: spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; animation: spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; }
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }


/* || Main navigation */

/* l'altezza minima serve a impostare l'offset corretto per l'attivazione del pushpin delle navbar della pagine prodotti*/
main-nav { min-height: 56px; }
@media only screen and (min-width: 601px) { 
    main-nav { min-height: 64px; } 
}
main-nav nav { background-color: #fff; box-shadow: none; }
main-nav nav .nav-wrapper { background-color: #fff; display: flex; padding: 0 1.5rem; align-items: center; }
main-nav #brand-logo { display: flex; flex-grow: 1; }
main-nav #brand-logo img.logo-dark { display: none; }
main-nav nav #nav-main-menu { list-style-type: none; }
main-nav nav #nav-main-menu li a { border-radius:10px; color: #616161; line-height: 1; margin:0 10px; padding:10px; text-transform: uppercase; }
main-nav nav #nav-main-menu li a.active { color: var(--slorange) !important; font-weight: 500; }

main-nav .btn-navbar { color:#424242; padding:8px; font-size: 24px; text-transform: uppercase; height: 40px; border-radius: 20px; line-height: 24px;}
main-nav .btn-navbar.active { color: var(--slorange) !important; }
main-nav .btn-navbar:hover { background-color: rgba(0,0,0,0.17) !important; }

main-nav .navbar-right { justify-content: right; display: flex; }
main-nav .navbar-right .btn-navbar { min-width: 40px; background-color: rgba(0,0,0,0.06);}
main-nav .navbar-right .btn-navbar > span { display: block; font-size: 1.1rem; font-weight: 500; line-height: 24px; margin-left: auto !important; margin-right: auto !important;}
main-nav .navbar-right .btn-navbar .btn-description { font-size: 11px; line-height: 13px; padding-left: 10px; text-align: left; font-weight: 500; width: 89px; }
main-nav .navbar-right nav-account-icon { opacity: 0; transition: opacity 0.1s ease-in-out; position: absolute; width: 40px; height: 40px; top: 0; right: 0; padding: 7px; border: 1px solid #dbdbdb; border-radius: 20px;}
main-nav .navbar-right nav-account-icon span { display: block; font-size: 1.2rem; text-align: center; font-weight: 500;}

@media only screen and (min-width: 993px) { 
    main-nav .navbar-right { flex-basis: 208px; flex-grow: 1; }
}

@media only screen and (max-width: 992px) { 
    main-nav #brand-logo { justify-content: center; }
}

@media only screen and (min-width: 601px) { 
    main-nav .navbar-left { flex-basis: 105px; }
}

@media only screen and (max-width: 600px) { 
    main-nav .navbar-right nav-account-icon:not(.logged) { border-color: transparent; } 
}

#mobile-nav { text-align: center; display: flex; align-items: center; justify-content: center; }
#mobile-nav ul { padding-left: 0; list-style: none; }
#mobile-nav li { padding: 6px 0; }
#mobile-nav li a { padding: 0 32px; font-size: 16px; color: #616161; font-weight: normal; height: 52px; line-height: 52px; text-transform: uppercase; display: inline-block; border-radius: 10px; }
#mobile-nav li a.active { color: var(--slorange) !important; font-weight: 500; }

/* || Footer */

footer { font-weight: 400; background-color: #f5f5f5 !important; color: white; padding-top: 20px; }
footer span { font-size: 16px; color: black; margin-right: 23px; line-height: 40px; vertical-align: middle; display: inline-block }
footer .container { margin-bottom: 30px; padding: 10px 0 0 0; }
footer ul { display: inline-block; vertical-align: middle; margin:0 0 15px 0; padding-left: 0; }
footer ul li { display: inline-block; margin-right: 30px; margin-bottom: 15px; transition: .1s ease-out; opacity: 0.7;}
footer ul li:hover { opacity: 1 !important; }
footer ul li a { color: #000; letter-spacing: .20px; }
footer hr { opacity: 0.5; margin-top: 20px; margin-bottom: 50px; background-color:#9e9e9e; }
.footer-logo { height: 28px; margin-right: 55px; margin-bottom: 30px; vertical-align: middle; opacity: 0.7;}
.social-btn { margin:auto 9px auto 0; border-radius: 50%; height: 40px; padding: 8px; }
.social-btn iconify-icon { color:#000 }


/* || header hero video or image */

header.hero { position:relative; padding-left: 1rem; padding-right: 1rem; }
header.hero > video, header.hero > .img { height: 400px; width: 100%; border-radius: 24px; }
header.hero > video { object-position: center; object-fit: cover; }
header.hero > .img { background:url("hero.jpg") center / cover; }
header.hero > .content { position: absolute; width: calc(100% - 60px); text-align: center; color: #fff; top: 50%; left:50%; transform: translateY(-50%) translateX(-50%); }
header.hero > .content > h1 { font-size: 48px; margin: 0; line-height: 75px; font-weight: 500; }


/* || Callout */

call-out { border-radius: 8px; color: #000000; display: block; margin: 5px 0; padding: 10px 20px 10px 60px; position: relative; }
call-out.note, call-out.archive { background-color: #cfcfcf; color:rgb(36, 36, 36); }
call-out.tip { background-color: #bbdefb;}
call-out.notice { background-color: #81c784; }
call-out.alert { background-color: #ffc04b; }
call-out.critical { background-color: #ef5350; }
call-out iconify-icon.callout-icon { height: calc(100% - 20px); left: 20px; opacity: 0.7; position: absolute; }

/* || Sounds Cards */

sound-card { background-color: #f5f5f5; color: rgba(0, 0, 0, 0.87); border-radius: 15px; width: 100%; display: flex; flex-direction: column; min-height: 0; }
sound-card > :is(a, div) { overflow: hidden; }
sound-card > a { transition: transform .3s cubic-bezier(0,0,0.5,1); }
sound-card > a:hover { transform: scale(1.0174418605); }
sound-card .card-image { flex-shrink: 0; max-height: 650px; width: 100%; border-radius: 15px; aspect-ratio: 18/10; position: relative; background-size: cover; background-position: center; }
sound-card .card-content { padding:16px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
sound-card .card-title { font-size: 22px; font-weight: 500; flex-shrink: 0; }
sound-card .card-content p { flex: 100%; height: inherit; margin-bottom: 7px; margin-top: 7px; opacity: 0.9; overflow-y: auto; scrollbar-width: thin; }
sound-card .btn-download { background-color: #b3e5fc !important; }
sound-card .btn.icon-left iconify-icon { left: 10px; }
sound-card .audio-name { margin-left:5px; line-height: 18px; }
sound-card .youtube-link { display: block; position: absolute; width: 100%; height: 100%; top: 0; left: 0; color: #ff0000; display: flex; align-items: center; justify-content: center; }
sound-card .youtube-link:hover { color: #ff3b3b; }
sound-card .youtube-link svg { flex: 100px 0 0; }
sound-card .audio-list { width: 100%; margin: 5px 0; padding-left: 0 !important; }
sound-card .audio-list li { padding: 5px 10px; border-radius: 10px; cursor: pointer; width: 100%; }
sound-card .audio-list li:hover { background-color: rgba(0,0,0,0.07); }
sound-card .audio-list li iconify-icon { margin-right: 10px; font-size: 17px; vertical-align: sub; }
.toast.audio-toast { padding: 10px 10px 25px 10px; min-width: 300px; }
.toast.audio-toast seekbar { position: absolute; background-color: rgba(133,133,133,0.5); bottom: 13px; height: 5px; width: calc(100% - 70px); left: 35px; border-radius: 10px; }
.toast.audio-toast .current-time, .toast.audio-toast .duration { line-height: 1rem; position: absolute; bottom: 9px; opacity: 0.7; font-size: 12px; }
.toast.audio-toast .current-time { left: 7px;}
.toast.audio-toast .duration { right: 7px; }

/* || Product Cards */

product-card > a { padding: 4%; padding-bottom: calc(4% + 9px); border-radius: 25px; text-align: center; opacity: 0; }
product-card > a:hover { background-color: rgba(0,0,0,0.07); }
product-card img { width: 100%; height:auto; aspect-ratio: 484 / 220; filter: drop-shadow(0px 2px 1px #848484); }
product-card h5 { color: #424242; font-size: 20px; margin: 5px 0 0 0; }
product-card span { color: #9e9e9e; font-size: 15px; font-weight: 400; display: none; }
product-card label.new { color: var(--slorange); font-weight: bold; letter-spacing: 1px; text-transform: uppercase; }
product-card.filterd { display: none; }


/* || Product page navigation topbar */

#product-page-nav { background-color: #f5f5f5; width:100%; height:48px; /*position: sticky; top: 0;*/ z-index:90; transition: box-shadow 0.3s ease 0s; }
#product-page-nav.pinned { box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); }
#product-page-nav .container { width: 90%; }
#product-page-nav .left { line-height: 48px; }
#product-page-nav .left .breadcrumb { color:#424242; font-weight: 500; font-size: 18px; }
#product-page-nav .tabs .tab { min-width: 40px; }
#product-page-nav .tabs .tab a { color:#424242; text-transform: capitalize; }
#product-page-nav .tabs .tab a:hover, #product-page-nav a.active { color: var(--slorange) !important; }
#product-page-nav .select-wrapper .dropdown-trigger { text-align: right; width: 80px; padding-right: 30px; border:none; text-transform: capitalize; height: 48px; margin: 0; }
#product-page-nav .select-wrapper .dropdown-content li > span { text-transform: capitalize; }
#product-page-nav .buttons { padding-top: 8px; padding-left: 10px; }

/* || Product page overview */

featured-accessories { padding:60px 0; display:block; background-color: #f5f5f5; }
featured-accessories .container { max-width: 1000px; padding: 20px; }
featured-accessories h4 { font-weight: 500; }
featured-accessories product-card > a { background-color: #ffffff; }


/* || Product page specs */

#specs { padding-top:30px; }
tech-specs { display: block; margin-bottom:0px; color:#424242; font-size: 17px; font-weight: 300; line-height: 2; padding-top: 1rem; padding-bottom: calc(1rem + 20px); } 
foot-notes { display: block; background-color: #eee; color: #616161; font-size: 14px; font-weight: 300; padding-bottom: 1.1rem; padding-top: 1.1rem; } 
specs-section { display: block; padding-bottom: 30px; transition: opacity 0.3s; }
specs-section:not(.row){opacity: 0;}
.specs-header { display: block; font-size: 24px; font-weight: 500; }
.specs-content { margin-bottom:20px; flex-wrap: wrap; column-gap: 15px; row-gap: 20px; display: flex; }
.specs-content b { font-weight: 500; }
.specs-content p { margin-bottom: 5px; margin-top: 5px; }
.specs-content > *:not(.flex) { flex: 100%; }
.specs-content > .flex { flex-grow: 1; }
.specs-content ul { margin: 0; list-style: none; padding-left: 0; }
@media only screen and (min-width: 993px) {
    specs-section:not(:last-child) { margin-bottom: 50px; border-bottom: 1px solid #e0e0e0; }
}
@media only screen and (max-width: 992px){
    .specs-header.col { padding-bottom: 5px; margin-bottom: 20px; border-bottom: 1px solid #e0e0e0; }
}


/* || Featured link */

featured-link { display: block; padding: 10px 0; }
featured-link a { color: var(--slorange); font-size: 1.3rem; font-weight: 500; }
featured-link a:hover { text-decoration: underline; }
featured-link iconify-icon { font-size: 22px; margin-left: 7px; vertical-align: text-bottom; }


/* || Youtube/Facebook video preview */

video-preview a { position: relative; display: block; }
video-preview img { border-radius: 10px; width: 100%; border: 1px solid #242424; }
video-preview svg { filter: drop-shadow(0px 2px 2px #00000047); left: 50%; position: absolute;top: 50%;transform: translate(-50%, -50%); }

video-preview.yt a {  color: #ff0000; }
video-preview.yt svg { height: 30%; }
video-preview.yt a:hover { color: #ff3b3b; }

video-preview.fb a { color: #1877F2; }
video-preview.fb svg { height: 26%; }
video-preview.fb a:hover { color: #3985e9; }

video-preview.fb-watch a { color: #1877F2; }
video-preview.fb-watch svg { height: 26%; }
video-preview.fb-watch a:hover { color: #3985e9; }

/* || Account page header */

#account-header { background-image: linear-gradient(135deg,#df8818,#732b00); padding-bottom: 25px; padding-top: 38px; }
#account-header .welcome { color: #592100; display: inline-block; font-size: 18px; font-weight: 500; }
#account-header .welcome .badge { margin-top: 2px; }
#account-header h1 { color: #ffffff; font-weight: 500; line-height: 1.4; margin: 0 0 10px 0; }
@media only screen and (max-width: 900px){
    #account-header h1 { font-size: 40px; }
}
#account-buttons .btn { margin: 0 15px 10px 0; }


/* || Account landing page */

#account-landing-page { text-align: center; background-color: white; color: rgba(0,0,0,0.87); }
#account-landing-page .p1 { background-color:#253e52; padding:30px 20px; color:white; }
#account-landing-page .p1 img { max-width:400px; height: auto; margin:20px; }
#account-landing-page .p2 { margin-bottom: -7px; }
#account-landing-page .p2 h3 { font-weight: 500; text-align: center; }
#account-landing-page .p2 p { font-size: 20px; font-weight: 300; }
#account-landing-page .p2 p span { display: inline-block; margin-right: 15px; }
#account-landing-page .p2 p span iconify-icon { vertical-align: -0.25em; font-size: 25px; margin-right:13px; }
#account-landing-page .p2 p span:first-child iconify-icon { display:none; }
@media only screen and (max-width: 600px){
    #account-landing-page .p2 p { display: inline-block; text-align: left; }
    #account-landing-page .p2 p span { display:block; }
    #account-landing-page .p2 p span:first-child iconify-icon { display: inline-block; }
}
#account-landing-page .p2 img { margin-top:30px; border-bottom: 1px solid #eee; }
#account-landing-page .p3 { padding:60px 0 30px 0; font-size: 18px; font-weight: 300; }
#account-landing-page .p3 h5 { font-weight: bold; }
.card-promo { margin-bottom:1.5rem; border-radius:8px; }
.card-promo img { display: block; }


/* || Account generic style */

#btn-account-help { position: fixed; bottom: 20px; right: 20px; z-index: 2; }
#account-content { margin-top: -175px; }
#account-content section { padding:50px 0 10px 0; }
#account-content h2 { text-transform: uppercase; font-weight: 600; color: #272727; font-size: 25px; margin:0; margin-bottom:23px; line-height: 1em; padding-top:0; }
#coupons .empty-state { padding-bottom: 40px; }
#coupons, #expired { grid-template-columns: 1fr 1fr 1fr; display: grid; grid-gap: 1.5rem; }
@media only screen and (max-width: 1470px) {
    #coupons, #expired { grid-template-columns: 1fr 1fr; }
}
@media only screen and (max-width: 805px) {
    #coupons, #expired { grid-template-columns: 1fr; }
}
:is(#modal-forgot-password, #modal-sign) .preloader-wrapper { width: 30px; height: 30px; margin-bottom: -10px; margin-left: 14px; }


/* || Account user products */

user-product { display:block; border-radius: 15px; overflow: hidden; position: relative; }
user-product .picture { background-color: #fff4df; border-radius: 15px; padding: 20px 20px 7px 20px; }
user-product .content { padding: 0 20px 20px 20px; }
user-product img { max-width: 100%; height: auto; }
user-product .flex { display: flex; flex-wrap: wrap; }
user-product h5 { flex-basis: 235px; line-height: 1.2; margin-bottom: 0; margin-right: auto; }
user-product h5 span { font-weight: 500; }
user-product .label-sn { display: block; font-size: 14px; font-family: monospace; }
user-product .label-firmware-container { flex-basis: 150px; height: 28px; padding: 5px 0; margin: auto 0; }
user-product .label-firmware { border-radius: 10px; display: block; font-size: 13px; font-weight: 500; height: 18px; line-height: 17px; padding: 1px 0; text-align: center; width: 100%;}
user-product .buttons { display: flex; gap: 5px; }
user-product .btn { box-shadow: none !important; margin: 0 2px; color: #424242; }
user-product .btn:not(.transparent) { background-color: #ececec !important; }
#btn-new-product { transition: all 0.3s ease; background-color: #ffffff; color: #444; margin:auto; font-size: 21px; line-height: 38px; padding: 20px 38px; }
#btn-new-product:hover { background-color: #fff4df; }
#btn-new-product iconify-icon { float: left; margin-right: 15px; }
#modal-add-product, #modal-delete-product, #modal-trial, #modal-delete-account { border-radius: 15px; max-width: 450px; }
:is(#modal-add-product, #modal-delete-product, #modal-trial) h4 { font-weight: 500; }
:is(#modal-add-product, #modal-delete-product, #modal-trial) .modal-footer { padding: 0px 24px; }
#modal-add-product .input-field { margin-top: 30px; }
#modal-add-product #sn-tip { margin-bottom: 40px; cursor: pointer; }

/* || Account user coupons */

user-coupon { max-width:430px; padding: 15px; border-radius: 15px; overflow: hidden; position: relative; box-shadow: 0 8px 17px 2px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12),0 5px 5px -3px rgba(0,0,0,0.2); }
user-coupon .mask { opacity: 1; position: absolute; background: rgb(150,150,150,0.7); width: 100%; height: 100%; top: 0; left: 0; padding-top: 100px; text-align: center; transition: 0.5s opacity; z-index: 1; }
user-coupon .mask .btn { width: 162px; background-color: #ff8c00; }
user-coupon .mask .btn .preloader-wrapper { height: 30px; width: 30px; margin-top: 12px; }
user-coupon .mask .btn .preloader-wrapper .spinner-layer { border-color: white; }
user-coupon .mask .flow-text { color:white; font-weight: 400; }
user-coupon .value { position:relative; width: 150px; height: 55px; text-align: center; color: white; overflow: hidden; text-transform: uppercase; font-weight: bolder; border: 3px solid white; display: inline-flex; border-radius: 10px; font-size: 28px; line-height: 35px; margin:5px 0; }
user-coupon .value.multiline { font-size: 20px; line-height: 18px; }
user-coupon .value .value-desc { width: 100%; padding:0px 10px; cursor: default; }
user-coupon .value .expire { font-size: 11px; line-height: 14px; display: block; font-weight: 400; }
user-coupon .logo { width: calc(50% - 5px); height: 65px; background-size: contain; background-repeat: no-repeat; background-position: center; }
user-coupon .promo-code { font-weight: bold; border-radius: 10px; text-align: center; cursor: pointer; margin: 15px 0; display: block; text-transform: uppercase; }
user-coupon .promo-code:hover { background-color: #ffffff12; }
user-coupon .promo-code .title { font-size: 13px; line-height: 30px; height: 20px;}
user-coupon .promo-code .code { font-size: 25px; line-height: 45px; height: 45px; }
user-coupon .link { opacity:0; }
/*psound*/
user-coupon:is([data-type='vintage_electric_1'],[data-type='vintage_electric_2'],[data-type='vintage_electric_3']) { background-color: #212121; color: #ededed; }
user-coupon:is([data-type='vintage_electric_1'],[data-type='vintage_electric_2'],[data-type='vintage_electric_3']) .value {color: darkorange; border-color: orange; }
user-coupon:is([data-type='vintage_electric_1'],[data-type='vintage_electric_2'],[data-type='vintage_electric_3']) .logo { background-image: url(../account/coupon_pics/vintage_electric.png); }
user-coupon:is([data-type='vintage_electric_1'],[data-type='vintage_electric_2'],[data-type='vintage_electric_3']) .link { color: darkorange; }
/*camelot*/
user-coupon[data-type='camelot_test'], user-coupon[data-type='camelot_1'] { background-color: #171d2a; color: #fff; }
:is(user-coupon[data-type='camelot_test'], user-coupon[data-type='camelot_1']) .logo { background-image: url(../account/coupon_pics/camelot.png); }
:is(user-coupon[data-type='camelot_test'], user-coupon[data-type='camelot_1']) .link { color: #1bc6c3; }
/*audiomodeling*/
user-coupon[data-type='audiomodeling'] { background-color: #f7f7f7; }
user-coupon[data-type='audiomodeling'] .logo { background-image: url(../account/coupon_pics/audiomodeling.png); }
user-coupon[data-type='audiomodeling'] .value{ color: #b30707; border-color: #b30707; }
user-coupon[data-type='audiomodeling'] .link { color: #b30707; }
/*ni*/
user-coupon[data-type='ni'] { background-color: #fff; }
user-coupon[data-type='ni'] .logo { background-image: url(../account/coupon_pics/ni.png); }
user-coupon[data-type='ni'] .value { color: #35668d; border-color: #35668d; }
user-coupon[data-type='ni'] .link { color: #35668d; }
/*cubase le + anima*/
user-coupon[data-type='cubase_le_1'] { background-color: #1a1a18; color:#fff; }
user-coupon[data-type='cubase_le_1'] .logo { background-image: url(../account/coupon_pics/steinberg.svg); }
user-coupon[data-type='cubase_le_1'] .value { color: #c6c6c6; border-color: #c6c6c6; }
user-coupon[data-type='cubase_le_1'] .link { color: #c6c6c6; }
user-coupon[data-type='cubase_le_1'] .mask .btn { background-color: #6a1717; }
/*uvi digital syntation*/
user-coupon[data-type='synsations_1'] { background-color: #1f006a; color:#fff; }
user-coupon[data-type='synsations_1'] .logo { background-image: url(../account/coupon_pics/synsation.png); }
user-coupon[data-type='synsations_1'] .link { color:#f8e7a4; }
user-coupon[data-type='synsations_1'] .value { color: #f8e7a4; border-color: #f8e7a4; }
user-coupon[data-type='synsations_1'] .mask .btn { background-color: #342753; }
/*stage-d*/
user-coupon[data-type='staged-slmk2'], user-coupon[data-type='staged-intro'] { background-color: #ffe5bf; color: #444; }
:is(user-coupon[data-type='staged-slmk2'], user-coupon[data-type='staged-intro']) .logo { background-image: url(../account/coupon_pics/staged.svg); }
:is(user-coupon[data-type='staged-slmk2'], user-coupon[data-type='staged-intro']) .link { color:#f8e7a4; }
:is(user-coupon[data-type='staged-slmk2'], user-coupon[data-type='staged-intro']) .value { color: #5e5e5e; border-color: #5e5e5e; }
:is(user-coupon[data-type='staged-slmk2'], user-coupon[data-type='staged-intro']) .mask .btn { background-color: #75460a; }
user-coupon[data-type='staged-slmk2'][data-code='redeemed'] .promo-code { pointer-events: none; } 
user-coupon[data-type='staged-slmk2'][data-code='redeemed'] .promo-code .title { visibility: hidden; }


/* || Account additional content */

additional-content { display: flex; flex-wrap: wrap; border: 1px solid #1c1c1c; padding: 20px; border-radius: 15px; overflow: hidden; background-position: center; background-size:cover; color:white; height: 155px; }
additional-content .title { flex-basis: 100%; font-size: 1.64rem; line-height: 1.3; filter: drop-shadow(1px 1px 2px #686868); font-weight: 500; word-wrap: anywhere; }
additional-content .btn { margin-top: auto; }


/* || License card */

license-card { flex-basis: 100% !important; border: 1px solid #1c1c1c; background-image: url("/account/additional_content/numaplayer.jpg"); background-size: cover; background-position: center; color: #ffffff; display: flex; padding: 20px; gap: 20px; border-radius: 20px; flex-wrap: wrap; }
license-card .left-block { display: flex; gap: 15px; flex-wrap: wrap; flex-basis: 65%; flex-grow: 3; }
license-card .license-logo { width: 64px; height: 64px; border-radius: 10px; margin-top: 10px; }
license-card .license-title { font-size: 1.64rem; flex: calc(100% - 84px) 1 1; line-height: 1.3; padding-top: 2px; font-weight: 500; word-wrap: anywhere; }
license-card .license-libraries { display: flex; flex-wrap: wrap; column-gap: 10px; row-gap: 5px;  padding: 10px 5px 0px 5px; flex-basis: 100%; }
license-card .license-libraries .title { flex-basis: 100%; font-size: 13px; font-weight: bold; text-transform: uppercase; color: #e4e4e4; }
license-card .right-block { border: 1px solid #4a4a4a; flex-grow: 3; flex-basis: 220px; background-color: #1c1c1cab; border-radius: 10px; padding: 10px; min-height: 130px; backdrop-filter: blur(9px); margin: 0px 5px 0px 5px; }
license-card .activations-title { font-weight: 500; text-transform: uppercase; }
license-card .right-block ul { margin: 5px 0; }
@media only screen and (max-width: 600px) {
    license-card .left-block { flex-basis: 100%; }
}

activation-item { display: list-item; }
activation-item:not(:last-child){ border-bottom: 1px solid #ffffff6e; }
activation-item li { display: flex; align-items: center; padding: 5px 2px; gap: 10px; }
activation-item li span { flex: auto; }
activation-item li .btn-revoke { height: 22px; font-size: 11px; letter-spacing: 0; padding: 0; flex: 56px 0 0; font-weight: bold; }

library-card { flex: 0 1 150px; display: block; text-align: center; }
library-card img { border-radius: 10px; }
library-card .btn { margin-top: -32px;}
library-card .btn-trial { margin-right: 5px; }
library-card.owned .btn { display: none; }
library-card:not(.owned) img { opacity: 0.6; }


/* || Blog post */

#post-header, #post-body, #post-tags, #post-share, #post-press { max-width: 768px; margin-left: auto; margin-right: auto; }
#post-header time { display: block; text-transform: uppercase; color:#9e9e9e; font-weight: 500; font-size:20px; line-height: 1.6; margin: 1.1rem 0 0 0; letter-spacing: 0.019em !important; }
#post-header h1 { font-size: 56px; line-height: 1.3; margin:0 0 15px 0; font-weight: 500; }
#post-header h2 { color: #828282; font-weight: 300; font-size: 1.64rem; margin: 1.0933333333rem 0 .656rem 0; display: none; }
#post-hero { margin-top:25px; }
#post-hero video { object-fit: cover; overflow: hidden; }
#post-hero > .img { padding-bottom: 57%; background: center /cover; background-repeat: no-repeat; overflow: hidden; }
#post-hero video-preview img { border-radius: 0;}
#post-body { padding:20px 0 40px 0; }
#post-body h2 { margin-top:6rem; font-size: 2.2rem; font-weight: 500; }
#post-body h3 { font-size: 1.5rem; font-weight: 500; }
#post-body img, #post-body video { max-width: 100%; height: auto; border-radius: 8px; }
#post-body p > img { margin-left: auto; margin-right: auto; display: block; }
#post-body a { word-break: break-word; }
#post-body strong { font-weight: bolder; }
#post-body figure { display: inline-block; margin:0; }
#post-body figcaption { opacity: 0.5; font-size: 1rem; }
#post-body ul { padding-left: 23px; }
#post-body ul > li { list-style: disc; }
#post-tags { padding-bottom: 30px; padding-top: 50px; border-top: 1px solid #e1e1e1; }
#post-share h6 { display: inline-block; }
#post-share a { display: inline-block; margin:-4px 5px auto 5px; border-radius: 50%; width: 30px; height: 30px; color:black; }
#post-share a iconify-icon { width: 20px; height: 20px; margin: 5px; }
#post-press { padding:30px 0 60px 0; }
@media only screen and (max-width: 900px) {
    #post-header time, #post-header h2 { font-size: 18px; }
    #post-header h1 { font-size: 35px; }
    #post-body h2 { font-size: 1.9rem; margin-top:5rem; }
}
@media only screen and (min-width: 601px) {
    #post-hero video, #post-hero .img, #post-hero video-preview img { border-radius: 25px; }
}
@media only screen and (max-width: 600px) {
    #post-hero { margin-left: -5vw; margin-right: -5vw; }
}


/* || Artist page */

#artist-info { position: relative; vertical-align: top; margin-top: 50px;}
#artist-info img { display: none; }
#artist-info.avatar img { display: block; left:0; top:0; height: auto; border-radius: 10px; margin-right: 30px; }
#artist-info h1 { margin-bottom: 0; margin-top: 0; font-weight: 500 !important; }
#artist-info h5 { color: #9e9e9e; text-transform: uppercase; margin-top: 0; }
#artist-hero { background-position: center; background-size: cover; background-repeat: no-repeat; border-radius: 13px; margin-top:19px; } 
#artist-content { padding:50px 0px; }
#artist-content h2 { font-size: 2.28rem; line-height: 110%; margin: 1.52rem 0 .912rem 0; font-weight: 400; }
#artist-content p { color:rgba(0,0,0,0.8);}
#artist-content blockquote { margin-bottom:70px; }

#artist-products { display: flex; gap: 17px; flex-wrap: wrap; }
artist-product { display: inline-block; flex: 0 0 240px; }
artist-product > a { display: flex !important; height: 60px; border-radius: 10px; border: 1px solid #d7d7d7; overflow: hidden; }
artist-product .image { flex: 0 0 58px; border-right: 1px solid #d7d7d7; background-color: #fff4df; background-position: 10px center; background-repeat: no-repeat; background-size: auto 47px; z-index: -1;}
artist-product .content { padding: 8px 9px; }
artist-product .title { font-size: 15px; font-weight: 500; color: #222222; }
artist-product .label { text-transform: uppercase; font-size: 11px; color: #757575; }

@media only screen and (max-width: 600px) {
    #artist-hero { aspect-ratio: 3 / 2; }
    #artist-info.avatar img { margin: -20px auto 40px auto; text-align: center; width: 250px; } 
    #artist-info h1 { font-size: 2.2rem; }
    #artist-info h5 { font-size:1.3rem; }
    artist-product { flex: 100%; }
}

@media only screen and (min-width: 601px) {
    #artist-hero { aspect-ratio: 16 / 9; }
    #artist-info.avatar { height: 150px; padding-left: calc(150px + 30px); padding-top: 10px; }
    #artist-info.avatar img { width: 150px; position: absolute; }
    #artist-info h1 { font-size: 2.5rem; }
    #artist-info h5 { font-size: 1.35rem; }
}

@media only screen and (min-width: 993px) {
    #artist-hero { aspect-ratio: 18 / 9; }
    #artist-info.avatar { height: 200px; padding-left: calc(200px + 30px); padding-top: 19px; }
    #artist-info.avatar img { width: 200px; position: absolute; }
    #artist-info h1 { font-size: 2.92rem; }
    #artist-info h5 { font-size: 1.64rem; }
}


/* || Product support page */

support-header { padding-left: 1rem; padding-right: 1rem; }
support-header > div { background-color: #f5f5f5; border-radius:24px; padding-bottom: 30px; }
support-header h1 { font-size: 50px; line-height: 70px; margin: 0; font-weight: 500; }
support-header img { max-width: 100%; max-height: 130px; width: auto; height: auto; margin-top: 11px; }
support-header .btn-back { color: #171717; font-size: 18px; height: 48px; line-height: 48px; padding: 0 18px 0 10px; border-radius: 48px; margin: 8px 0; }
support-header .btn-back iconify-icon { font-size: 24px; padding-top: 12px; margin-right: 10px;}
@media only screen and (max-width: 600px) {
    support-header h1 { font-size: 40px; line-height: 60px; }
}
support-content { padding-bottom: 60px; flex: 1 0 auto; }
support-content h5 { padding-top: 35px; margin-top: 35px; border-top: 1px solid #e0e0e0; }
support-content h5:first-of-type { margin-top: 0; border-top: none}

support-item { display: block; padding: 35px 100px 35px 0; position: relative; }
support-item:not(:last-of-type) { border-bottom: 1px solid var(--border-color-light); }
support-item > .title { display: block; flex: 100%; font-size: 28px; font-weight: 500; margin-bottom: 8px; max-width: calc(100% - 41px); }
support-item > iconify-icon { font-size: 60px; opacity: 0.9; position: absolute; right: 20px; top: 50px; }
support-item > p { font-size: 1.1rem; margin: 8px 0 10px; }
support-item .row { margin-bottom: 0; }

@media only screen and (max-width: 600px) {
    support-item { padding-right: 0; }
    support-item > iconify-icon { font-size: 40px; top: 35px; }
}

support-video figure { margin: 0; margin-bottom: 10px; }
support-video figure video { background-color: #000; border-radius: 10px; object-fit: cover; width: 100%; aspect-ratio: 16 / 10; }
support-video figure figcaption { padding-top: 5px; }

discontinued-item a { background-color: #f5f5f5; border: none; border-radius: 16px; display: block !important; padding: 15px 20px; color: #2b2b2b; margin-bottom: 13px; font-weight: 500; }
discontinued-item a:hover { background-color: #ddd; }
discontinued-item a label { display: block; cursor: pointer; }

extra-help { width: 190px; display: inline-block; text-align: center; margin-bottom: 1rem; padding: 17px 10px; }
extra-help:not(:first-of-type) { border-left: 1px solid #e0e0e0; }
extra-help > iconify-icon { width: 100%; margin-bottom: 7px; opacity: 0.9; }
extra-help a iconify-icon { font-size: 20px; opacity: 0.9; vertical-align: text-top; margin-left: 3px; }
extra-help div { padding-top: 5px; font-size: 14px; }
@media only screen and (max-width: 600px) {
    extra-help { width: 50% }
}


/* || Support article */

#article.container { padding-bottom:60px; display: flex; justify-content: space-around; gap: 40px; }
#article .tags { display: block; color:#9e9e9e; font-weight: 400; font-size:17px; line-height: 1.6; margin: 0 0 20px 0; }
#article .article-tags{ border: 1px solid #ccc; line-height: 10px; color: rgba(0,0,0,0.6); margin-right: 5px; border-radius: 20px; padding: 4px 9px; font-size: 13px; font-weight: 500; height: 20px; display: inline-block; }
#article.container .markdown { font-size: 17px; }
#article :is(h1, h2, h3, h4)  { font-weight: 500; }
#article h1 { font-size: 40px; line-height: 1.4; margin:0; padding-bottom: 15px; padding-top: 1.1rem; }
#article h2 { border-top: 1px solid #e0e0e0; font-size: 32px; margin-top: 2.5rem; padding-top: 1em; }
#article h3 { font-size: 24px; margin-top: 30px; margin-bottom: 5px; }
#article h4 { font-size: 18px; margin-top: 5px; margin-bottom: 5px; }
#article .markdown img, #article .markdown video { max-width: 100%; height: auto; border-radius: 5px; }
#article .markdown p { margin: 5px 0 20px 0; }
#article .markdown p img { vertical-align: bottom; }
#article .markdown a { word-break: break-word}
#article .markdown strong { font-weight: bolder; }
#article .markdown ul, #article .markdown ol { padding-left:23px; }
#article .markdown ul li { margin-top: 6px; list-style: disc; }
#article .markdown ol li { margin-top: 6px; }
#article .markdown ul li img, #article .markdown ol li img { margin-bottom:20px; }
#article .markdown ol li ol li { list-style: lower-alpha; }
#article .markdown code { padding: 1px 4px; font-family: monospace; background-color: #71717147; opacity: 0.8; font-size: 0.9em; border-radius: 3px; }
#article.container .markdown table { font-size: 15px; table-layout: fixed; }
#article .markdown iconify-icon[inline] { font-size: 24px; vertical-align: top; }
.article-tabs-container { border-radius: 10px; padding: 10px 20px; border: 1px solid rgba(0,7,17,.09); background: rgba(2,21,48,.02); margin-bottom: 35px; }
.article-tabs { text-align: center; padding: 10px}
.article-tabs-btn { background-color: #e0e0e0 !important; color: #424242; margin: 5px 10px 5px 10px; }
.article-tabs-btn.active { color: #ffffff !important; background-color: #fb8c00 !important; }
.article-tab.hidden { display: none; }

#toc-trigger { background-color: #ffffff; margin-left: 2px; transition: width 0.2s ease-out; }
#toc-trigger span { font-size: 18px; color: #212121; transition: transform 0.2s ease-out, opacity 0.2s ease-out; }
#toc-trigger label { margin-left: 10px; }

#toc-container { flex: 0 0 250px; padding-top: 70px; }
#toc { max-height: calc(100vh - 40px); overflow-y: auto; outline: none; position: sticky; top: 20px; padding: 20px !important; border-left: 1px solid #7e7e7e52; }
#toc li.link-H3 { margin-left: 20px; }
#toc li a { color: rgba(0,0,0,0.8); padding: 5px 0; display: block; position: relative; transition: all 0.5s ease-in-out; }
#toc li a.active { padding-left: 10px; }
#toc li a::before { content: ""; position: absolute; display: block; margin-right: 10px; width: 0; height: 70%; left: 0; top: 15%; border-radius: 50px; background-color: var(--slorange); transition: width 0.5s ease-in-out; }
#toc li a.active::before { width: 4px; }
#toc li a:hover { opacity: 0.5; }

@media only screen and (max-width: 900px) {
    #article.container .markdown { font-size: 14px; }
    #article .markdown span:first-of-type { font-size: 15px; }
    #article h1 { font-size: 30px; }
    #article h2 { font-size: 25px; }
    #article h3 { font-size: 20px; }
    
}
@media only screen and (max-width: 992px) {
    #article.container { gap: 0; }
    #toc-container { flex: 0 1 0px; }
    #toc { background-color: #fff; border-left: none; border-radius: 20px; max-width: calc(100% - 35px); margin: 0; display: none; min-width: 100px; opacity: 0; position: absolute; left: 0; top: 0; z-index: 9999; box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.2); }
}

/* || Support link e buttons */

.support-link { font-size: 16px; display: block; padding: 10px 0; }
.support-link iconify-icon { margin-left: 7px; vertical-align: text-top; }
support-btn { display: inline-block; margin-right: 15px; margin-top: 5px; }

/* || Inverted table */

#pedal-compatibility-chart { margin-left: -19px; width: calc(100% + 38px); }
#pedal-compatibility-chart table th, #pedal-compatibility-chart table td { height: 44px; vertical-align: top; font-size: 13px !important; padding-bottom: 10px; padding-top: 10px; }
#pedal-compatibility-chart table th { text-align: left; }
#pedal-compatibility-chart table thead { display: block; float: left; }
#pedal-compatibility-chart table thead tr { display: block; padding: 0 10px 0 0; }
#pedal-compatibility-chart table tbody { border-right: 1px solid rgb(248, 248, 248); display: block; width: auto; position: relative; overflow-x: auto; white-space: nowrap; }
#pedal-compatibility-chart table tbody tr { display: inline-block; border-radius: 10px; }
#pedal-compatibility-chart table th { display: block; text-align: right; padding-left: 0; padding-right: 0; }
#pedal-compatibility-chart table td { display: block; min-height: 1.25em;  text-align:center; }
#pedal-compatibility-chart table tr { border-bottom: none; padding: 0 10px; }
#pedal-compatibility-chart tr > td:first-child, #pedal-compatibility-chart tr > td:last-child { font-weight: bolder; }
#pedal-compatibility-chart table thead { border: 0; border-right: 1px solid rgb(248, 248, 248); }

/* || input belli */

input.browser-default.modern-input { outline: 0; display: block; width: 100%; background-color: #f0f0f0; border-radius: 10px; height: 50px; line-height: 50px; padding: 0 20px; border:none; box-shadow:none; font-size: 16px; }
input.browser-default.modern-input::placeholder { color: grey; }

/* || language selector */
lang-selector select.browser-default { border-bottom: none; border-radius: 5px; padding: 5px; cursor: pointer; margin-top: 10px; }