/* Variables Start*/
:root {
    --red: #a5221e;
    --darkred: #781b18;
    --blue: #16253A;
    --lightblue: #1682FF;

    --green: #358828;

    --fontdark: #2D3337;
    --fontmedium: #4F5965;
    --fontlight: #CAD1D8;

    --error: #ee9900;

    --black: #000000;
    --white: #ffffff;
    --offwhite: #F4F4F4;
    --dark: #181B1D;
    --darkgrey: #999999;
    --medgrey: #dddddd;
    --lightgrey: #f4f4f5;

    --font-body: "Poppins", Helvetica, Arial, sans-serif;
    --font-heading: "Poppins", Helvetica, Arial, sans-serif;

    line-height: 1.5;
    font-size: 62.5%;
}

/* Variables end */

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    font-size: 16px;
    min-height: 100vh;
    display: flex;
    flex-flow: column nowrap; 
    justify-content: space-between;

    position: relative;
}

h1,
h2,
h3,
h4,
h5,
figure,
p,
ol,
ul {
    margin: 0;
}

a {
    text-decoration: none;
}

ol,
ul {
    list-style: none;
    padding-inline: 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-size: inherit;
    font-weight: inherit;
}

h2.page-header {
    color: #2D3337;
    text-align: center;
    font-size: 4.2rem;
    font-weight: 600;
    margin: 4rem 1rem;
}

img {
    display: block;
    max-inline-size: 100%;
}

fieldset {
    padding: 0;
    margin: 0;
    border: none;
    margin-inline: 0;
    padding-block: 0;
    padding-inline: 0;
}

.material-symbols-outlined {
    vertical-align: middle;
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 48;
}

.rows {
    display: flex;
    flex-flow: row;
}

/* Defaults end */

/* Utility start */
.line{
    border-bottom: 1px solid #D1D2D3;
    padding-bottom: 1rem;
}

/* Utility end */


/* Header start */
.header-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.20);
    padding: 0rem 2rem;
}

.header {
    display: flex;
    flex-wrap: nowrap;
    padding: 1.5rem 0rem; 
    position: relative;
    background-color: var(--white);
    width: 100%;
    max-width: 128rem;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.hamburger-menu span {
    width: 20px;
    height: 2px;
    background-color: var(--fontdark);
}

.header-logo {
    margin-right: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo a {}

.header-logo a img {
    width: 185.5px;
    min-width: 184.5px;
}

.header-nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.header-nav-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 2.5rem;
}

.header-nav-list li a {
    color: var(--fontdark);
    font-size: 1.4rem;
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

.header-actions {
    display: none;
}

.header-actions.active {
    display: flex;
}

.header-actions-login{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    background-color: var(--offwhite);
    padding: 1rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--fontdark);
    height: 100%;
}

.header-actions-login.loggedin {
    background-color: var(--red);
    color: var(--white);
}

.header-actions-login img {
    min-width: 16px;
    min-height: 17px;
}

.header-actions-register {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background-color: var(--red);
    padding: 1rem 1.5rem;
    border-radius: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 1.2rem;
}

.header-actions-register a {
    color: #fff;
    text-decoration: none;
}

.header-actions-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--offwhite);
    padding: 1.25rem;
    border-radius: 50%;
    cursor: pointer;
}

.header-actions-cart img {
    min-width: 20px;
    min-height: 20px;
}

.header-actions .login-util {
    position: relative;
}

.header-actions .login-util .dropdown.login {
    position: absolute;
    top: 0;
    right: 160px;
    background-color: var(--offwhite);
    z-index: 1000;
}

.header-actions-login.loggedin {
    position: relative;
    z-index: 1000;
}

.header-actions .login-util .dropdown.loggedin {
    position: absolute;
    top: 35px;
    right: 0;
    background-color: var(--offwhite);
    z-index: 900;
    width: 150%;
    padding: 1.5rem;
    
    display: none;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-end;
    gap: 0.4rem;

    transition: 0.25s;
}

.login-util:hover .dropdown.loggedin{
    display: flex;
}

.header-actions .login-util .dropdown.loggedin a {
    color: var(--fontdark);
    font-size: 1.4rem;
}

.header-actions .login-util .dropdown.loggedin a:hover {
    color: var(--red);
}

.header-actions .greeting {
    align-self: center;
}

.fade-in {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 0.15s;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.fade-out {
	opacity: 0;
	animation-name: fadeOutOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 0.15s;
}

@keyframes fadeOutOpacity {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

#login-dropdown {
    width: 350px;
    padding: 60px 35px 25px 35px;
    background: var(--white);
    font-size: 12px;
    text-align: center;
    display: none;
    flex-flow: column nowrap;
    position: absolute;
    top: 0px;
    left: -82px;
    z-index: 2000;
}

#login-dropdown.active {
    display: flex;
}

#login-dropdown .headline {
    font-size: 14px;
    color: var(--red);
    margin-bottom: 15px;
    font-weight: 600;
}

#login-dropdown .field-input input {
    font-size: 14px;
    height: 30px;
    width: 100%;
    border: 1px solid var(--medgrey);
    color: var(--black);
    margin: 5px 0;
    padding: 0 10px;
}

#login-dropdown a.small {
    display: block;
    font-size: 10px;
    text-align: right;
    text-decoration: none;
}

#login-dropdown .form-field.submit {
    padding: 15px 0 25px 0;
}

#login-dropdown .button-close {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 5px;
    right: 25px;
}

#login-dropdown p {
    margin: 0 0 15px 0;
}

#login-dropdown a.button {
    display: inline-block;
    border: 2px solid var(--red);
    border-radius: 8px;
    background: var(--red);
    color: #ffffff;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 12px;

    transition: 0.25s;
}

#login-dropdown a.button:hover {
    background: var(--darkred);
}

.button-close:after {
    content: '';
    height: 40px;
    border-left: 2px solid var(--darkgrey);
    position: absolute;
    transform: rotate(45deg);
    left: 20px;
}

.button-close:before {
    content: '';
    height: 40px;
    border-left: 2px solid var(--darkgrey);
    position: absolute;
    transform: rotate(-45deg);
    left: 20px;
}

#login-dropdown .banner {
    padding: 5px 10px;
    width: 100%;
}

#login-dropdown .banner.error {
    color: var(--white);
    background: var(--error);
    display: none;
}

#login-dropdown .loading {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8) url("../img/loading.gif") no-repeat center center;
}

#login-onpage {
    position: relative;
    width: 100%;
    max-width: 349px;
    padding: 20px;
    background: var(--white);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 0;
    font-size: 16px;
    margin-top: 10px;
}

#login-onpage a {
    color: #A73B33;
    font-weight: 600;
    text-decoration: underline;
}

#login-onpage .form-row {
    margin-bottom: 10px;
    text-align: left;
}

#login-onpage label {
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.3px;
    display: block;
}

#login-onpage input[type="text"],
#login-onpage input[type="password"] {
    display: block;
    width: 100%;
    margin-top: 3px;
    padding: 8px;
    border: 1px solid #CCC;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    font-size: 14px;
    color: var(--black);
}

#login-onpage .forgot-password-container {
    text-align: right;
    margin-top: 2px;
}

#login-onpage a.forgot-password-link {
    font-size: 11px;
}

#login-onpage .terms {
    margin-top: 20px;
}

#login-onpage .terms p.small {
    text-align: center;
    font-size: 10px;
    color: #4c4c4c;
    line-height: 1.4;
}

#login-onpage .button-login {
    margin-top: 20px;
    margin-bottom: 10px;
}

#login-onpage .button-login a.button-without-chevron {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #A5221E;
    color: #FFF;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    font-size: 16px;
    line-height: normal;
}

#login-onpage .button-login a.button-without-chevron:hover {
    background-color: #781B18;
    color: #FFF;
}

#login-onpage .footermessage {
    text-align: center;
    font-size: 11px;
    color: #4c4c4c;
    padding-top: 10px;
}

#login-onpage .banner {
    padding: 8px 10px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid transparent;
}

#login-onpage .banner.error {
    color: #7c1616;
    background: #fef2f2;
    border-color: #f8d6d6;
    display: none;
}

#login-onpage .loading {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8) url("../img/loading.gif") no-repeat center center;
    border-radius: 6px;
    z-index: 2;
}


@media screen and (max-width: 960px) {

    .header-container {
        padding: 0rem;
    }

    .header {
        padding: 2rem;
        gap: 2rem;
    }

    .hamburger-menu {
        display: flex;
    }

    .header-logo {
        margin: 0;
    }

    .header-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        /* Position it right under the header */
        left: 0;
        width: 100%;
        background-color: var(--offwhite);
        /* or whatever matches your design */
        z-index: 10;
    }

    .header-nav-list {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        padding: 1rem;
    }

    .header-nav-list li {
        text-align: center;
    }

    .header-nav-list li a {
        padding: 1rem;
        border-radius: 5px;
    }

    /* .header-nav-list li a:hover {
        transition: all;
        transition-duration: 100ms;
        background-color: var(--red);
        color: var(--white);
    } */
}

@media screen and (max-width: 540px) {
    .header {
        flex-wrap: wrap;
        padding: 2rem;
    }

}

/* Header end */

/* Hero start */

.hero-container {
    background: url(../img/hero_background-basic-coverv2.svg) bottom center no-repeat, url(../img/hero_background-basic.jpg) top center no-repeat;
    background-size: cover;
    backdrop-filter: blur(10px);
    width: 100%;
    height: 96rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: auto, cover;
    padding: 0rem 2rem;
}

.hero {
    height: 100%;
    width: 100%;
    max-width: 128rem;
    display: flex;
    flex-direction: column;
}

.hero h1 {
    color: var(--white);
    font-size: 4.6rem;
    max-width: 59rem;
    line-height: 5.7rem;
    font-weight: 600;
    display: flex;
    margin-top: 7rem;
}

.hero-content-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    width: fit-content;
    align-self: flex-end;
    margin-right: 7vw;
    margin-top: 20rem;
}

.hero-cta p {
    color: var(--offwhite);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.hero-cta-button {
    background-color: var(--red);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.hero-cta-button a {
    color: var(--white);
    font-size: 2.2rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 11rem;
    gap: 2rem;
}

.hero-content-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 23.5rem;
}

.hero-content-card img {
    margin-bottom: 2.5rem;
}

.hero-content-card h2 {
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.hero-content-card p {
    color: var(--offwhite);
    line-height: 2.1rem;
    font-size: 1.4rem;
}

@media screen and (max-width: 960px) {

    .hero {
        padding: 0;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-self: flex-start;
        margin: 0rem;
    }

    .hero-cta p {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .hero-cta-button {
        gap: .5rem;
        padding: .4rem 1.5rem;
    }

    .hero-cta-button a {
        font-size: 1.6rem;
    }

    .hero h1 {
        font-size: 3.5rem;
        max-width: 50rem;
        line-height: 4rem;
        margin-top: 3rem;
        margin-left: 2.5rem;
    }

    .hero-container {
        background: url(../img/hero_background-basic_tablet.jpg);
        background-position: top center;
        background-size: 100%;
        background-repeat: no-repeat;
        background-color: none;
        backdrop-filter: none;
        height: auto;
        padding: 0rem;
    }

    .hero-content-container {
        background-color: var(--dark);
        padding: 2rem 2.5rem;
        margin-top: 20rem

    }

    .hero-content {
        display: block;
        width: 100%;
        max-width: 26rem;
        margin: 4rem auto 0rem auto;
    }

    .hero-content-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 23.5rem;
        height: 25rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-content-card * {
        margin: 0 auto;
        text-align: center;
    }

    .slick-prev {
        left: -5vw;
    }

    .slick-next {
        right: -5vw;
    }
}

@media screen and (max-width: 540px) {
    .hero-container {
        background: url(../img/hero_background-basic_mobile.jpg);
        background-repeat: no-repeat;
        background-position: top center;
        background-size: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
        max-width: 35rem;
        line-height: 3rem;
        margin-top: 1.8rem;
        margin-bottom: 30vw;
        margin-left: 2.5rem;
    }

    .hero-content-container {
        background-color: var(--dark);
        padding: 2rem 2.5rem;
        margin-top: 0rem

    }


    .slick-prev {
        left: -10vw;
    }

    .slick-next {
        right: -10vw;
    }
}

/* Hero end */

/* Why start*/

.why-container {
    background: url(../img/why_background.jpg) no-repeat;
    background-position: top right;
    width: 100%;
    max-width: 144rem;
    margin: 0 auto;
}

.why {
    display: flex;
    flex-direction: column;
    padding: 7rem 0rem 0rem 0rem;
}

.why-header {
    display: flex;
    /* margin-top: 7rem; */
    margin-bottom: 2.5rem;
    position: relative;
}

.why-header img {
    width: 69px;
}

.why-header h2 {
    font-size: 4.2rem;
    font-weight: 600;
    margin-left: 10.5rem;
    color: var(--fontdark);
}

.why-header h2:before {
    content: '';
    background: url('../img/line_icon.svg');
    width: 69px;
    height: 7px;
    display: block;
    position: absolute;
    left: 0px;
    top: 30px;
}

.why p {
    max-width: 72rem;
    margin-left: 107px;
    color: var(--fontmedium);
}

.why a {
    color: var(--white);
    background-color: var(--red);
    padding: 1rem 1.5rem;
    border-radius: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 2.4rem;
    margin-left: 107px;
    width: fit-content;
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}

@media screen and (max-width: 960px) {

    .why {
        display: flex;
        flex-direction: column;
        padding: 4.5rem 2rem 4.5rem 0rem;
    }

    .why-container {
        background: url(../img/why_background_mobile.jpg) no-repeat;
        background-position: bottom right;
    }

    .why-header h2 {
        font-size: 3rem;
        margin-left: 5rem;
    }

    .why-header h2:before {
        content: '';
        background: url('../img/line_icon.svg');
        background-position: top right;
        width: 35px;
        height: 5px;
        display: block;
        position: absolute;
        left: 0px;
        top: 20px;
    }

    .why p {
        max-width: 72rem;
        margin-left: 50px;
        font-size: 1.4rem;
    }

    .why a {
        font-size: 1.4rem;
        margin-left: 55px;
        margin-top: 2rem;
        margin-bottom: 3.5rem;
    }

}

@media screen and (max-width: 540px) {}

/* Why end */

/*Accepted Items start */

.accepted-items-container {
    width: 100%;
    max-width: 144rem;
    margin: 1rem auto 10rem auto;
}

.accepted-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.accepted-items-header {
    display: flex;
    margin-bottom: 2.5rem;
    position: relative;
    justify-content: center;
}

.accepted-items-header img {
    width: 69px;
}

.accepted-items-header h2 {
    font-size: 4.2rem;
    font-weight: 600;
}

.accepted-items-list {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    max-width: 400rem;
    width: 100%;
    margin-bottom: 35px;
}

.accepted-items-list .accepted-item {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 50%;
}

.accepted-items-list .accepted-item .label {
    font-size: 2rem;
    font-weight: 600;
    color: var(--fontdark);
}

.accepted-items-list .accepted-item .value {
    font-size: 2rem;
    font-style: italic;
    color: var(--fontmedium);
}

.accepted-items-list .accepted-item .value.yes {
    color: var(--green);
    font-weight: 600;
}

.accepted-items p {
    max-width: 72rem;
    color: var(--fontmedium);
}

.accepted-items a {
    color: var(--white);
    background-color: var(--red);
    padding: 1rem 1.5rem;
    border-radius: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 2.4rem;
    width: fit-content;
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}

@media screen and (max-width: 960px) {

    .accepted-items {
        display: flex;
        flex-direction: column;
        padding: 4.5rem 2rem 4.5rem 0rem;
    }

    .accepted-items-container {
        background: url(../img/why_background_mobile.jpg) no-repeat;
        background-position: bottom right;
    }

    .accepted-items-header h2 {
        font-size: 3rem;
        margin-left: 5rem;
    }

    .accepted-items-header h2:before {
        content: '';
        background: url('../img/line_icon.svg');
        background-position: top right;
        width: 35px;
        height: 5px;
        display: block;
        position: absolute;
        left: 0px;
        top: 20px;
    }

    .accepted-items p {
        max-width: 72rem;
        margin-left: 50px;
        font-size: 1.4rem;
    }

    .accepted-items a {
        font-size: 1.4rem;
        margin-left: 55px;
        margin-top: 2rem;
        margin-bottom: 3.5rem;
    }

}

@media screen and (max-width: 540px) {}

/* Accepted Items end */

/* How start */

.how-container {
    /* background: url(../img/how_background.jpg) no-repeat; */
    background-position: top right;
    width: 100%;
    max-width: 144rem;
    margin: 0 auto;
}

.how {
    display: flex;
    position: relative;
    padding: 7rem 0 0 0;
}

.how-header {
    display: flex;
    /* margin-top: 7rem; */
    margin-bottom: 2.5rem;
    position: relative;
    flex-direction: column;
}

.how-header h2 {
    font-size: 4.2rem;
    font-weight: 600;
    margin-left: 10.5rem;
    color: var(--fontdark);
    margin-bottom: 2rem;
}

.how-header h2:before {
    content: '';
    background: url('../img/line_icon.svg');
    width: 69px;
    height: 7px;
    display: block;
    position: absolute;
    left: 0px;
    top: 30px;
}

.how p {
    margin-left: 107px;
    color: var(--fontmedium);
    font-size: 2rem;
    line-height: 3.9rem;
    max-width: 57rem;
    margin-right: 5vw;
}

.how-img {
    margin-left: auto;
    margin-right: 5vw;
}

.how-instructions {
    flex-basis: 100%;
}

@media screen and (max-width: 960px) {

    .how {
        display: flex;
        flex-direction: column;
        position: relative;
        padding: 0rem 0 0 0;
    }

    .how-header h2 {
        font-size: 3rem;
        margin-left: 5rem;
    }

    .how-header h2:before {
        content: '';
        background: url('../img/line_icon.svg');
        background-position: top right;
        width: 35px;
        height: 5px;
        display: block;
        position: absolute;
        left: 0px;
        top: 20px;
    }

    .how p {
        margin-left: 50px;
        font-size: 1.8rem;
        line-height: 3.2rem;
        max-width: 57rem;
        margin-right: 0vw;
    }

    .how-img {
        margin: 0 auto;
        padding: 2rem;
    }
}

/* How end */

/* Steps start */

.steps-container {
    padding: 7rem 2rem 0rem 2rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 10rem;
}

.steps {
    width: 100%;
    max-width: 128rem;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    margin-bottom: 7rem;
}

.steps-step {
    max-width: 36rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 0rem 2rem;
}

.steps-step h3 {
    font-weight: 600;
    font-size: 2.2rem;
    text-align: center;
    color: var(--fontdark);
}

.steps-step p {
    line-height: 2.6rem;
    color: var(--fontmedium);
    text-align: center;
}

.steps-cta {
    align-self: center;
    justify-self: center;
    color: var(--white);
    background-color: var(--red);
    padding: 1rem 1.5rem;
    border-radius: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 1.8rem;
}

a.button {
    display: inline-block;
    color: var(--white);
    background-color: var(--red);
    padding: 1rem 1.5rem;
    border-radius: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 1.8rem;
}

@media screen and (max-width: 960px) {

    .steps-container {
        padding: 4rem 2rem;
        display: flex;
        flex-direction: column;
        margin-bottom: 6rem;
    }

    .steps {
        justify-content: space-evenly;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }

    .steps-step {
        padding: 0rem 2rem;
        margin-bottom: 2rem;
    }

    .steps-step h3 {
        font-size: 1.8rem;
    }

    .steps-step p {
        line-height: 2.2rem;
        font-size: 1.4rem;
    }

    .steps-cta {
        font-size: 1.4rem;
    }


}

@media screen and (max-width: 540px) {}

/* Steps end */

/* Pricing start */

.pricing-container {
    margin-bottom: 10rem;
    text-align: center;
}

.pricing {
    width: 100%;
    max-width: 83rem;
    margin: 0 auto;
}

.pricing p{
    color: var(--fontmedium);
    text-align: center;
    margin-top: 2rem;
}

.pricing h2 {
    color: #2D3337;
    text-align: center;
    font-size: 4.2rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.pricing-storage-fees {
    border-radius: 18px;
    background-color: var(--red);
    margin-bottom: 3rem;
}

.pricing-storage-fees h3 {
    color: var(--white);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    padding: 1.5rem 0;
}

.pricing-storage-fees-details {
    background-color: var(--blue);
    border-radius: 0 0 18px 18px;
    padding: 1.5rem;
}

.pricing-storage-fees-details h4 {
    color: var(--white);
    font-size: 4.5rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    line-height: 4rem;
    margin-bottom: 1rem;
}

.pricing-storage-fees-details h5 {
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-storage-fees-details p {
    font-size: 1.4rem;
    color: var(--fontlight);
    text-align: center;
}

.pricing-withdraw-fees{
    background-color: var(--red);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-withdraw-fees h3{
    color: var(--white);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    padding: 1.5rem 0;

}

.pricing-withdraw-fees-table{
    background-color: #E7E7E7;
}

.pricing-withdraw-fees-table th{
    background-color: #EAEAEC;
    padding: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--blue);
}

.pricing-withdraw-fees-table td{
    text-align: center;
    padding: 1rem;
    font-size: 2rem;
    font-weight: 500;
    color: var(--fontdark);
}

.pricing-withdraw-fees-table tr{
    background-color: var(--white);
}

.pricing-cta {
    display: inline-block;
    color: var(--white);
    background-color: var(--red);
    padding: 1rem 1.5rem;
    border-radius: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 1.8rem;
    margin-top: 5rem;
}

@media screen and (max-width: 960px) {

    .pricing-container{
        padding: 0rem 2rem;
        margin-bottom: 7rem;
    }
    .pricing h2 {
        font-size: 3rem;
        margin-bottom: 3rem;
    }

    .pricing-storage-fees-details h4 {
        font-size: 3.8rem;
        line-height: 3.8rem;
    }

    .pricing-withdraw-fees-table th {
        font-size: 1.4rem;
    }

    .pricing-withdraw-fees-table td {
        font-size: 1.6rem;
    }

    .pricing p {
        font-size: 1.4rem;
    }
}


/* Pricing end */

/* FAQ Start */
.faq-container{
    margin-bottom: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq{
    max-width: 128rem;
    margin: 0rem 2rem;
}

.faq h2{
    font-size: 4.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 7rem;
    color: var(--fontdark);
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-bottom: 2rem;
}

.faq-toggle {
    width: 100%;
    text-align: left;
    background-color: var(--white);
    padding: 15px 20px 15px 30px;
    cursor: pointer;
    border: none;
    font-weight: 600;
    border-radius: 5px;
    position: relative;
    font-size: 2rem;
    color: var(--fontdark);
}

.faq-toggle::before {
    content: "+";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-item.active .faq-toggle::before {
    content: "−";
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    padding: 0 15px;
    margin: 0;
}

.faq-content p {
    color: var(--fontmedium);
    padding-left: 1.5rem;
    padding-bottom: 2rem;
}

.faq-item.active .faq-content {
    max-height: 200px; /* Adjust as per your content */
}

@media screen and (max-width: 960px) {
    .faq-container{
        margin-bottom: 6rem;
    }
    .faq h2{
        font-size: 3rem;
        margin-bottom: 3rem;
    }

    .faq-toggle {
        font-size: 1.6rem;
    }

    .faq-content p {
        font-size: 1.4rem;
    }
}

/* FAQ End */


/* Footer start */

.footer-container {
    display: flex;
    background-color: var(--blue);
    justify-content: center;
    align-items: center;
    padding: 0rem 2rem;
}

.footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 144rem;
    margin-top: 4rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-column.vitals {
    flex: 1;
}

.footer-column.sitemap {
    flex: 3;
    flex-direction: row;
    margin-top: 25px;
}

.footer-column-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-column-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-column h3 {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
}

.footer-column a {
    color: var(--offwhite);
    font-size: 16px;
}

.footer-column p {
    color: var(--offwhite);
    font-size: 1.4rem;
}

.footer-column li {
    margin-bottom: 1rem;
}

.footer-logo {
    width: 200px;
    /* max-width: 165px; */
}

address {
    font-style: normal;
    color: var(--offwhite);
}

.footer-related {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 25rem;
}

.footer-related a {
    color: var(--white);
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: var(--offwhite);
    padding: 2rem 0rem;
    border-top: 2px solid white;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom ul {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: var(--offwhite);
}

.footer-bottom p {
    color: var(--offwhite);
}

.socials li a {
    display: flex;
    gap: 1rem;

}

@media screen and (max-width: 960px) {

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-column.vitals {
        flex: auto;
        width: 100%;
        flex-flow: row;
        justify-content: center;
        gap: 5rem;
    }

    .footer-column.sitemap {
        flex-direction: row;
    }

    .footer-column.sitemap > * {
        text-align: center;
    }

}

@media screen and (max-width: 540px) {

    .footer-column.sitemap,
    .footer-column.vitals {
        flex-direction: column;
    }

    .footer-column.vitals > * {
        text-align: center;
    }

    .footer-column .footer-related,
    .footer-column-top {
        justify-content: center;
        margin: 0 auto;
    }

    .footer-top li,
    .footer-bottom li,
    .footer-bottom p {
        clear: both;
        width: 100%;
        text-align: center;
    }
    .footer-bottom img {
        float: none !important;
        display: inline;
        position: relative;
        top: 4px;
    }
}

.to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
    border: none;
    padding: 0;
    border-radius: 30px;
    background: var(--white);
}

.to-top img {
    width: 63px;
    height: 63px;
}

/* Footer end */

/* Footer start */
/*
.footer-container {
    display: flex;
    background-color: var(--blue);
    justify-content: center;
    align-items: center;
    padding: 0rem 2rem;
}

.footer{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 144rem;
    margin-top: 4rem;
}

.footer-top{
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-column{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-column-top{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-column-bottom{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-column h3 {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
}

.footer-column a {
    color: var(--offwhite);
    font-size: 1.4rem;
}

.footer-column p {
    color: var(--offwhite);
    font-size: 1.4rem;
}

.footer-column li {
    margin-bottom: 1rem;
}

.footer-logo{
    width: 200px;
    /* max-width: 165px; * /
}

address {
    font-style: normal;
    color: var(--offwhite);
}

.footer-related{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 25rem;
}

.footer-related a{
    color: var(--white);
    font-weight: 600;
}

.footer-bottom{
    display: flex;
    justify-content: space-between;
    color: var(--offwhite);
    padding: 2rem 0rem;
    border-top: 2px solid white;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom ul{
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom a{
    color: var(--offwhite);
}

.footer-bottom p{
    color: var(--offwhite);
}

@media screen and (max-width: 960px) {
    .footer-top{
        flex-direction: column;
        gap: 2rem;
    }

}
*/
/* Footer end */

/* Dashboard Start */

.dashboard-container{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding: 4rem 2rem 0rem 2rem;
    flex-grow: 2;
}

.dashboard{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 128rem;
}

.dashboard-header{
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: 2.5rem;

}

.dashboard-header-dropdown {
    position: relative;
    display: inline-block;
}

.dashboard-header-dropbtn {
    color: var(--font-heading);
    font-size: 1.4rem;
    border: none;
    cursor: pointer;
    background-color: var(--white);
    display: flex;
    gap: 1rem;
    font-weight: 600;
    padding: 0;
}

.dashboard-header-dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 160px;
    overflow: auto;
    z-index: 1;
    flex-direction: column;
    padding: 2rem;
    border: 2px solid var(--fontlight);
    font-size: 1.4rem;
    gap: 1rem;
    top: 2rem;
}


.dashboard-header-dropdown-content label{
    display: flex;
    gap: 1rem;
}

.dashboard-header-bottom{
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dashboard-header-bottom-value{
    color: var(--fontdark);
    font-size: 2.3rem;
    font-weight: 600;
    line-height: 4.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-header-bottom-value span{
    margin-left: 1rem;
}

.dashboard-header-bottom-change{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    color: var(--blue);
    font-weight: 600;
    font-size: 2rem;
}

.dashboard-header-bottom-change .gain {
    color: var(--green);
}

.dashboard-header-bottom-change .loss {
    color: var(--red);
}

.dashboard-header-bottom-date{
    font-size: 1.2rem;
    color: var(--fontmedium);
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-header-bottom-date span{
    margin-left: .5rem;
}

.dashboard-header-bottom-add{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background-color: var(--red);
    padding: 1rem 1.5rem;
    border-radius: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 1.8rem;
    margin-left:  auto;
}

#btn-add-items .loading {
    background: var(--red) url('../img/loading_button.gif') no-repeat center center;
    display: none;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
}

@media screen and (max-width: 960px) {
    .dashboard-header-bottom{
        flex-wrap: wrap;
    }

    .dashboard-header-bottom-add{
        flex-basis: 100%;
    }

    .dashboard-header-bottom-value{
        font-size: 2rem;
        line-height: 2rem;
    }
    .dashboard-header-bottom-change{
        font-size: 1.4rem;
    }
}

.dashboard-charts{
    display: flex;
    gap: 2rem;
    margin-bottom: 6rem;
}

.pie-chart-container{
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    padding: 2rem;
}

.line-chart-container{
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    flex: 1;
    overflow-x: auto;
}

.charts-view{
    display: flex;
    gap: 2rem;
    align-items: center;
}

.charts-view select{
    min-width: 27rem;
    background-color: var(--white);
    border: 1px solid #D1D2D3;
    padding: .5rem 1rem;
}

.chart{
}

.piechart{
    height: 500px;
    min-width: 300px;
    width: 100%;
    max-width: 500px;
}

.linechart{
    height: 500px;
    min-width: 600px;
    width: 100%;
    /* max-width: 600px; */
}

@media screen and (max-width: 960px) {
    .dashboard-charts{
        flex-direction: column;
        margin-bottom: 6rem;
        overflow: hidden;
        justify-content: center;
        align-items: center;
    }

    .piechart{
    }
    
    .linechart{
    }
}
/* Dashboard Top End */


/* Dashboard Vault Start */
.dashboard-vault{

}

.dashboard-vault-header{
    display: flex;
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: 3.5rem;
}

.dashboard-vault-header-tabs{
    display: flex;
    gap: 10rem;
}

.dashboard-vault-header-tabs-tab{
    display: flex;
    gap: .5rem;
    justify-content: center;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 5px solid var(--white);
}

.dashboard-vault-header-tabs-tab h3{
    color: var(--fontdark);
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 3.2rem;
}

.dashboard-vault-header-tabs-tab span{
    color: var(--fontmedium);
    font-size: 1.2rem;
}

.dashboard-vault-header-tabs-tab{
    cursor: pointer;
}

.dashboard-vault-header-sorting{
    margin-left: auto;
    margin-right: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    color: var(--fontdark);
    font-size: 1.4rem;
    padding-bottom: 1rem;
}

.dashboard-vault-header-sorting select{
    cursor: pointer;
    color: var(--fontdark);
    font-size: 1.4rem;
    background-color: var(--white);
    border: 1px solid #D1D2D3;
    padding: .5rem 1rem;
}

.dashboard-vault-header-layout{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    color: var(--fontdark);
    font-size: 1.4rem;
    padding-bottom: 1rem;
}

@media screen and (max-width: 960px) {
    .dashboard-vault-header{
        flex-wrap: wrap;
    }

    .dashboard-vault-header-tabs {
        width: 100%;
        display: flex;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .dashboard-vault-header-tabs-tab h3 {
        font-size: 1.8rem;
        line-height: 1.8rem;
    }

    .dashboard-vault-header-sorting {
        margin-left: 0;
        margin-right: 3.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        font-weight: 700;
        color: var(--fontdark);
        font-size: 1.4rem;
        padding-bottom: 1rem;
    }

}

.vault-layout-icon{
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.dashboard-vault-content {
    margin: 100px 0;
}

.dashboard-vault-content .dashboard-no-items {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    flex-grow: 2;
}

.dashboard-vault-content .dashboard-no-items p {
    text-align: center;
}

.dashboard-vault-content .dashboard-no-items .dashboard-header-bottom-add {
    margin: 25px auto;
}

.vault-card-content {
    display: contents;
    min-height: 400px;
}
.vault-pagination-content {
    display: contents;
}
.dashboard-vault-content-items{
    flex-wrap: wrap;
}

.dashboard-vault-content-items,
.dashboard-vault-content-processing {
    display: none;
    gap: 2.5rem;
}

.dashboard-vault-content-items.vault-content-active,
.dashboard-vault-content-processing.vault-content-active {
    display: flex;
    justify-content: center;
}

.dashboard-vault-header-tabs-tab.vault-tab-active {
    border-bottom: 5px solid var(--fontdark);
}

@media screen and (max-width: 1370px) {
    .dashboard-vault-content-items{
        justify-content: center;
    }
}

.vault-card{
    display: none;
    flex-direction: column;
    width: 30rem;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
    margin-bottom: 3rem;
}

.vault-card-img {
    width: 30rem;
    height: 30rem;
}
.vault-card-img a.vault-card-image-wrapper{
    cursor: default;
}
.vault-card-img.slick-initialized a.vault-card-image-wrapper {
    cursor: pointer !important;
}
.vault-card-image-wrapper{
    display: block;
    height: 280px;
    width: 300px;
    padding: 1rem 0;
}

.vault-card-image-wrapper img{
    aspect-ratio: auto !important;
    max-height:100% !important; 
    max-width:100% !important;
    object-fit: cover !important;
    vertical-align: middle !important;
    margin: 0px auto;
}

.vault-card-img .slick-prev {
    left: 0;
    background-color: rgba(225,225,225,0.5);
    height: 4.5rem;
    width: 2.5rem;
    z-index: 100;
    padding: 1rem .5rem;
}

.vault-card-img .slick-next {
    right: 0;
    background-color: rgba(225,225,225,0.5);
    height: 4.5rem;
    width: 2.5rem;
    z-index: 10;
    padding: 1rem .5rem;
}

.slick-lightbox-close {
	position: absolute;
	top: 15px;
	right: 15px;
	height: 50px;
	width: 50px;
}

.slick-lightbox-close::before {
	font-size: 50px;
}

.slick-lightbox .slick-prev::before, .slick-next::before {
	font-size: 30px;
	line-height: 1;
	opacity: 1;
}

.slick-lightbox .slick-prev, 
.slick-lightbox .slick-next {
    width: 40px;
    height: 40px;
    z-index: 9999;
}

.slick-lightbox .slick-next::before {
    content: '';
    background: url('../img/right-arrow_icon.svg') no-repeat;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-position: center center;
    z-index: 200;
}

.slick-lightbox .slick-prev::before {
    content: '';
    background: url('../img/left-arrow_icon.svg') no-repeat;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-position: center center;
}

.vault-card-details{
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1rem;
    height: 100%;

    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.vault-card-details-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.vault-card-details-name{
    color: var(--fontdark);
    font-size: 1.5rem;
    font-weight: 700;
    width: auto;
    border: 1px;

    flex-grow: 1;
}

.vault-card-details-value{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    font-size: 2rem;
    font-weight: 600;
    color: var(--green);
    line-height: 2rem;
    margin: 5px;
}

.vault-card-details-text{
    color: #4F5965;
    font-size: 1.2rem;
    overflow: hidden;
    border: 1px;
}

.vault-card-details-text.bold{
    font-weight: 600;
}

.vault-card-details-stats{
    display: flex;
    justify-content: space-between;
}

.vault-card-details-stats-left,
.vault-card-details-stats-right {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 50%;
}

.vault-card-details-stats-left li{
    text-align: left;
    font-size: 1.2rem;
    color: var(--fontmedium);
    display: flex;
    justify-content: space-between;
}

.vault-card-details-stats-left span{
    font-size: 1.2rem;
    color: var(--fontdark);
    font-weight: 700;
    width: 8rem;
    display: inline-block;
}

.vault-card-details-stats-right li{
    text-align: right;
    font-size: 1.2rem;
    color: var(--fontmedium);
}

.vault-card-details-stats-right span{
    margin-left: 1rem;
    font-size: 1.2rem;
    color: var(--fontdark);
    font-weight: 700;
}

.dashboard-vault-pagination-container {
    clear: both;
    overflow: hidden;
    margin-top: 30px;
    width: 100%;
}
.dashboard-vault-pagination {
    clear: both;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.vault-card-actions{
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--offwhite);
    margin-top: auto;
    flex-wrap: wrap;
    align-items: center;
}

.vault-card-actions-order{
    position: relative;
    flex-basis: 100%;
}

.vault-card-order-dropdown{
    display: flex;
}

.vault-card-order-dropbtn {
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    padding: 8px 12px;
    cursor: pointer;
    position: relative; /* Required for absolute positioning of child elements */
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    color: var(--fontdark);
}

.vault-card-order-dropdown-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    top: 100%; 
    left: 0;
    z-index: 101;
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    width: 280px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s;
}

.vault-card-order-dropdown-content.open {
    max-height: 300px;
}

.vault-card-order-dropdown-content-options{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    font-size: 1.2rem;
    color: var(--fontdark);
}

.vault-card-order-details{
    color: var(--red);
    font-size: 1.4rem;
    font-weight: 700;
}

.vault-card-order-cart{
    text-transform: uppercase;
    background-color: var(--red);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 1rem 1.5rem;
    border: none;
    color: var(--white);
}


.vault-card-actions-withdraw{
}

.vault-card-actions-edit{
    margin-left: auto;
}
.vault-card-actions-edit button{
    background-color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


.vault-card-actions-withdraw a{
    font-size: 1.4rem;
    color: var(--fontdark);
    font-weight: 700;
    text-decoration: underline;
}

.dashboard-vault-content-processing{
    flex-wrap: wrap;
}

.vault-card-processing {
    display: none;
	flex-direction: column;
	width: 30rem;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
	/* margin-bottom: 4rem; */
}

.vault-card-processing-status{
    height: 7rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.status-expected {
    background-color: #000066;
}

.status-received {
    background-color: #003399;
}

.status-processing {
    background-color: #006699;
}

.status-transit-to-vault {
    background-color: #009999;
}

.status-in-vault {
    background-color: #00CC99;
}

.status-withdrawal-pending {
    background-color: #66CC99;
}

.status-withdrawal-shipped {
    background-color: #669999;
}

.status-withdrawn {
    background-color: #666666;
}

.status-pending {
    background-color: #b71c1c;
}

.status-sold {
    background-color: #6666FF;
}

.status-consigned {
    background-color: #0000FF;
}

.vault-card-processing-status h4{
    font-size: 2rem;
    color: var(--white);
    text-align: center;
}

.vault-card-processing .vault-card-details {
	padding: 1rem 1rem 2rem 1rem;
}

.vault-card-details-name input{
    width: 100%;
    height: 22px;
    border: 1px solid var(--fontmedium);
    padding: 0rem .5rem;
    color: var(--fontdark);
    font-size: 1.5rem;
    font-weight: 700;

}

.vault-card-details-text textarea{
    width: 100%;
    height: 35.5px;
    border: 1px solid var(--fontmedium);
    padding: 0rem .5rem;
    color: #4F5965;
	font-size: 1.2rem;
}

@media screen and (max-width: 1370px) {
    .dashboard-vault-content-processing {
        flex-wrap: wrap;
        justify-content: center;
    }
    .vault-card-processing {
        margin-bottom: 2rem;
    }
    .vault-card {
        margin-bottom: 2rem;
    }
}

/* Row layout start*/
.row-view{
    flex-direction: column;
}

.row-view-card{
    width: 100%;
    display: flex;
    flex-direction: row;
    height: 120px;
    gap: 2rem;
    background: #f9f9f9;
    margin: 0rem;
}
.row-view-card:last-child {
    margin-bottom: 3rem;
}

.row-view-card .vault-card-img{
    width: 100%;
    height: auto;
    max-width: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.row-view-card .vault-card-img div:not(:first-child) {
    display: none;
}

.row-view-card .vault-card-img div{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.row-view-card .vault-card-image-wrapper{
    display: inline;
    height: auto;
    width: auto;
    padding: 0;
}

.row-view-card .vault-card-img div img{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.row-view-card .vault-card-details{
    flex-wrap: wrap;
    padding: 1.5rem 0rem 1rem 0rem;
    justify-content: flex-start;
    flex: 1;
}

.row-view-card .vault-card-details .vault-card-details-header{
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: .5rem;
    width: 40%;
}
.row-view-card .vault-card-details .vault-card-details-text{
    max-width: 300px;
}
.row-view-card .vault-card-details .vault-card-details-stats{
    /* flex-basis: 100%; */
    height: 100%;
    align-items: center;
    justify-content: space-evenly;
    gap: 3rem;
}

.row-view-card .vault-card-details .vault-card-details-stats .vault-card-details-stats-left {
	display: flex;
	flex-direction: column;
	flex: initial;
}

.row-view-card .vault-card-details .vault-card-details-stats .vault-card-details-stats-left li {
    justify-content: flex-end;
    gap: 1rem;
    text-align: right;
}

.row-view-card .vault-card-details .vault-card-details-stats .vault-card-details-stats-left li span {
    width: auto;
}

.row-view-card .vault-card-actions{
    margin-top: 0;
    width: 295px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
    padding: 1.5rem 1.5rem 1rem 0rem;
}

.row-view-card .vault-card-actions .vault-card-actions-withdraw{
    align-self: flex-end;
}

.row-view-card .vault-card-processing-status{
    height: 100%;
    padding: 2rem;
    width: 35%;
}

.row-view-card .vault-card-processing-content {
    width: 65%;
    padding-right: 25px;
}


/* Row layout end */


.vault-pagination-arrow {
    cursor: pointer;
    margin: 0 10px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.vault-pagination-arrow:hover {
    opacity: 1;
}

.vault-pagination-arrow .material-symbols-outlined {
    max-width: 24px;
    margin-top: 9px;
    color: #353739;
}

@media screen and (max-width: 900px) {
    .vault-pagination-arrow {
		margin: 0 0px;
	}
}

@media screen and (max-width: 550px) {
    .vault-pagination-arrow {
		margin: 0 -5px;
	}
}

@media screen and (max-width: 400px) {
    .vault-pagination-arrow {
		margin: 0 -8px;
	}
}

.vault-pagination-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 0.5rem;
}

.vault-pagination-number {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1.4rem;
}

@media screen and (max-width: 900px) {
    .vault-pagination-number {
		padding: 6px 10px;
	}
}

@media screen and (max-width: 550px) {
    .vault-pagination-number {
		padding: 4px 8px;
	}
}

@media screen and (max-width: 400px) {
    .vault-pagination-number {
		padding: 3px 4px;
	}
}

.vault-pagination-number.page-active {
    background-color: var(--fontdark); /* Or any other highlight color you prefer */
    color: var(--white);
    border-radius: 50%;
}
.vault-pagination-number.page-invisible {
    display: none;
}
.vault-pagination-number.page-visible {
    display: block;
}


/* Dashboard Vault end */


/* Intake Start */

.intake-container{
    width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
    flex-grow: 1;
}

.intake{
    display: flex;
    flex-direction: column;
	padding: 4rem 0rem;
	width: 100%;
	max-width: 128rem;
	margin: 0rem 2rem;
}

.intake-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e8e8e8;
}

.intake-header h2{
    font-size: 3.4rem;
    font-weight: 600;
    color: var(--fontdark);
    line-height: 4.2rem;
}

.intake-header p{
    font-size: 1.4rem;
    color: var(--fontdark);
}

.intake-header a{
    font-size: 2.0rem;
    color: var(--fontdark);
}

.intake-container.agreement {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-grow: 1;
    flex-flow: column nowrap;
}

.agreement .intake {
    display: flex;
    flex-flow: column nowrap;
	padding: 4rem 0rem;
	width: 100%;
	max-width: 128rem;
	margin: 0rem 2rem;
    flex-grow: 1;
}

.agreement .intake-message {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;

    margin: 0 auto;
    text-align: center;
    max-width: 650px;
    flex-grow: 1;
}

.intake-form{
    color: var(--fontdark);
    font-size: 1.4rem;
    display: flex;
    flex-direction: column;
}

.intake-form input{
    border: 1px solid #D1D2D3;
    padding: .5rem 1rem;
    max-width: 300px;
}

.intake-form select{
    border: 1px solid #D1D2D3;
    background-color: var(--white);
    padding: .5rem 1rem;
}

.intake-form label{
    font-weight: 600;
    margin-bottom: .5rem;
}

.intake-form-userInfo{
    display: flex;
    position: relative;
    flex-direction: column;
    margin-bottom: 2rem;
}

.intake-form-header{
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
}

.intake-form-header legend{
    font-size: 2.6rem;
    color: var(--fontdark);
    font-weight: 600;
    line-height: 3.5rem;
}

.intake-form-userInfo-fields{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.intake-form-userInfo-fields div{
    display: flex;
    flex-direction: column;
    /* flex-basis: calc(50% - 2rem); */
}

.intake-form-userInfo-fields-first{
    width: 100%;
    max-width: 275px;
}

.intake-form-userInfo-fields-last{
    width: 100%;
    max-width: 275px;
}

.intake-form-userInfo-fields-email{
    width: 100%;
    max-width: 570px;
}

.intake-form-userInfo-fields-add1{
    width: 100%;
    max-width: 570px;
}

.intake-form-userInfo-fields-add2{
    width: 100%;
    max-width: 570px;
}

.intake-form-userInfo-fields-city{
    width: 100%;
    max-width: 275px;
}

.intake-form-userInfo-fields-state{
    width: 100%;
    max-width: 275px;
}

.intake-form-userInfo-fields-code{
    width: 100%;
    max-width: 275px;
}

.intake-form-userInfo-fields-country{
    width: 100%;
    max-width: 275px;
}

.intake-form-shipping{
    margin-bottom: 4rem;
}


.intake-form-shipping-fields{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.intake-form-shipping-fields div{
    display: flex;
    flex-direction: column;
    /* flex-basis: calc(50% - 2rem); */
}

.intake-form-shipping-fields-shipping{
    width: 100%;
    max-width: 570px;
}

.intake-form-shipping-fields-insurance{
    width: 100%;
    max-width: 570px;
}

.intake-form-button{
    align-self: center;
    justify-self: center;
	color: var(--white);
	background-color: var(--red);
	padding: 1rem 1.5rem;
	border-radius: 5px;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	font-size: 1.2rem;
    border: none;
    position: relative;
}

.intake-form-button-reverse{
    align-self: center;
    justify-self: center;
	color: var(--red);
	background-color: var(--white);
	padding: 1rem 1.5rem;
	border-radius: 5px;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	font-size: 1.2rem;
    border: 1px solid var(--red);
    position: relative;
}

.intake-form-button.disabled {
    color: var(--white);
    background-color: var(--medgrey);
    cursor: default;
}

.intake-form-button .loading {
    background: var(--red) url('../img/loading_button.gif') no-repeat center center;
    display: none;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
}

.add-to-cart{
    width: 100%;
    max-width: 350px;
    text-align: center;
}

.terms-agreement{
    font-size: 1.6rem;
    color: var(--fontdark);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    margin-right: 2rem;
}

/* Hide the default checkbox */
.terms-agreement input[type="checkbox"] {
    display: none;
}

/* Create a custom square checkbox */
.terms-agreement label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 1px solid #D1D2D3;
    vertical-align: middle;
    padding: 4px; /* This creates a gap around the black square */
    box-sizing: border-box;
}

/* Style the checkbox when it's checked */
.terms-agreement input[type="checkbox"]:checked + label::before {
    background-clip: content-box; /* ensures only content area gets the background color */
    background-color: black;
}

.terms-agreement a{
    color: var(--red);
    font-weight: 600;
    text-decoration: underline;
}

.intake-form-header-itemType{
    width: 100%;
    max-width: 275px;
    display: flex;
    gap: .5rem;
    justify-content: flex-start;
    align-items: center;
}

.intake-form-header-itemType select{
    flex: 1;
}

.intake-form-item{
	margin-bottom: 4rem;
}

.intake-form-item-conditional{
    margin-bottom: 2rem;
}

#coin_search_success {
    display: none;
    background: var(--green);
    color: var(--white);
    padding: 5px 15px;
}

#coin_search_error {
    display: none;
    background: var(--red);
    color: var(--white);
    padding: 5px 15px;
}

#coin_search_warning {
    display: none;
    background: var(--error);
    color: var(--white);
    padding: 5px 15px;
}

#coin_search_success strong,
#coin_search_error strong,
#coin_search_warning strong {
    margin-right: 10px;
}

.intake-form-item-fields {
    position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
    margin: 1rem 0;
    background: var(--lightgrey);
    padding: 2rem;
}

.intake-form-item-fields .left {
    flex: 8;
}
.intake-form-item-fields .left .top {
    width: 100%;
    clear: both;
    margin-bottom: 15px;
}
.intake-form-item-fields .left .bottom {
    width: 100%;
    clear: both;
    display: flex;
    gap: 1rem;
}
.intake-form-item-fields .left .bottom .column {
    flex: 1;
}
.intake-form-item-fields .right {
    flex: 4;
    display: flex;
}

.intake-form-item-fields > div .divider {
    height: 10px;
    width: 100%;
}

.intake-form-item-fields-lookup{
    width: 100%;
    max-width: fit-content;
    display: flex;
    flex-direction: column;
}

.field-note,
.field-note > * {
    font-size: 9pt;
    font-style: italic;
}

.field-note.hidden {
    display: none;
}

.field-note .material-symbols-outlined {
    font-size: 15px;
    margin: 0 3px;
    display: inline-block;
    vertical-align: middle;
}

.field-note .flyout {
    display: none;
    position: absolute;
    top: -4px;
    left: 0;
    background: var(--white);
    z-index: 10000;
    border: 1px solid var(--medgrey);
    padding: 10px 25px 10px 10px;
}

.field-note .flyout .closebut {
    position: absolute;
    top: 5px;
    right: 3px;
}

.intake-form-item-fields-lookup-action{
    display: flex;
}

.intake-form-item-fields-lookup-action input{
    display: block;
}

.intake-form-item-fields-lookup-action button{
    cursor: pointer;
    min-width: 34px;
    border: none;
    background-color: var(--red);
    display: flex;
    justify-content: center;
    align-items: center;
}

.intake-form-item-fields-lookup-action button img{
    width: 16px;
    height: 16px;
}

.intake-form-item-field {
    display: flex;
    flex-flow: row wrap;
    justify-content: stretch;
    align-items: stretch;
    gap: 15px;
    margin: 0.25rem;
}

.intake-form-item-field.hidden {
    display: none;
}

.intake-form-item-field strong span.thin {
    font-weight: normal;
}

.intake-form input.error,
.intake-form select.error {
    border-color: var(--red);
}

.intake-form-item-field .inputmode {

}

.intake-form-item-field.columns {
    flex-flow: column wrap;
    gap: 5px;
    margin-bottom: 15px;
}

.intake-form-item-field strong {
    min-width: 120px;
    max-width: 300px;
}   

.intake-form-item-field strong .small {
    display: block;
    font-weight: 300;
    font-size: 8pt;
    float: right;
    margin-top: 3px;
    color: var(--red);
}

.intake-form-item-field #item_consign {
    margin-right: 4px;
}

.intake-form-item-fields-cert{
    width: 100%;
    max-width: 275px;
}

.intake-form-item-fields-value{
    width: 100%;
    max-width: 275px;
}

.intake-form-item-fields-desc{
    width: 100%;
    max-width: 570px;
}

.intake-form-item-fields-gradingService{
    width: 100%;
    max-width: 275px;
}

.intake-form-item-fields-grade{
    width: 100%;
    max-width: 275px;
}

.intake-form-item-fields-extra{
    width: 100%;
    max-width: 275px;
    flex-direction: row !important;
    align-items: center;
    margin-top: 1.5rem;
}

.intake-form-item-fields-extra input{
    width: 20px;
    height: 20px;
}

.intake-form-item-fields-lookup-action{
    display: flex;
}

#search-paper-money {
    display: none;
}

.intake-form-item-fields-extra-option{
    display: flex;
    flex-direction: row !important;
    width: 100px;
    gap: 1rem;
}

.intake-form-item-fields-extra-option input{
    cursor: pointer;
    border: 1px solid #D1D2D3;
    box-shadow: none;
}

.intake-form-item-fields .loading {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background: rgba(255,255,255,0.75) url('../img/loading.gif') no-repeat center center;
}

@media screen and (max-width: 900px) {
    .intake-form-item-fields {
        display: block;
    }
    .intake-form-item-fields .left{
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 550px) {
    .intake-form-item-fields .left .bottom {
        display: block;
    }
    .intake-form-item-fields .left .bottom .column:first-child {
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 400px) {
    .intake-form-item-field {
        display: block;
    }
}

.search_error_extended {
    background: rgba(244,244,244, 0.90);
    display: none;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    gap: 25px;
}

.search_error_extended * {
    width: 100%;
    max-width: 650px;
    font-size: 18px;
    text-align: center;
}

.intake-form-item-fields .loading.active {
    display: flex;
}

.intake-form-item-fields.paper-money {
    display: none;
}

.intake-form-item-fields.editable {
    position: relative;
	display: none;
	flex-wrap: wrap;
	gap: 2rem;
    margin: 1rem 0;
    background: var(--lightgrey);
    padding: 2rem;
}

.intake-form-item-fields.editable .intake-form-item-field .fieldlabel {
    width: 150px;
}

.intake-form-item-fields.editable .intake-form-item-field .fieldlabel .required,
.intake-form-item-field .required {
    color: var(--red);
    font-size: 18px;
    margin-left: 5px;
}

.intake-submission{
    margin-top: 2rem;
    margin-bottom: 4rem;
    border-top: 1px solid #DADEE2;
    padding-top: 2rem;
}

.intake-submission h2{
    color: var(--fontdark);
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.data-table {
	width: 100%;
	border: 1px solid var(--medgrey);
	background: var(--white);
	border-collapse: collapse;
}

.data-table th {
	text-align: left;
	font-weight: 600;
	font-size: 1.4rem;
	padding: 10px 15px;
    color: var(--white);
    background: var(--blue);
}

.data-table td {
	padding: 1rem;
    color: var(--fontmedium);
}

.data-table td span{
    color: var(--fontdark);
    font-weight: 700;
}

.data-table td a img {
    height: 20px;
    width: auto;
}

.data-table tr:nth-child(odd) {
    background-color: #F9F3EC /* Lighter shade for odd rows */
}

.data-table tr:nth-child(even) {
    background-color: #EBDBC5 /* Slightly darker shade for even rows */
}

.intake-navigation{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.intake-summary{
    margin-bottom: 4rem;
}

.intake-summary h2{
    color: var(--fontdark);
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.intake-summary-details{
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.intake-summary-details-left{
    display: flex;
    gap: 5rem;

}

.intake-summary-details-left-userInfo p{
    color: var(--fontdark);
    font-size: 1.8rem;
    line-height: 2.7rem
}

.intake-summary-details-left-userInfo p:first-of-type {
    font-size: 1.4rem;
    font-weight: 600;
}

.intake-summary-details-left-orderInfo{
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.intake-summary-details-left-orderInfo p{
    color: var(--fontdark);
    font-size: 1.4rem;
    line-height: 2.1rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    font-weight: 600;
}

.intake-summary-details-left-orderInfo p span{
    font-weight: 400;
    width: 125px;
}

.intake-summary-details-left-orderInfo p:first-of-type span{
    font-size: 1.8rem;
    font-weight: 600;
}

.intake-summary-details-right{
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
    padding: 2.5rem;
    width: 420px;
    color: var(--fontdark);
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.intake-summary-details-right p{
    font-size: 1.4rem;
    color: var(--fontdark);
    line-height: 2.1rem;
    display: flex;
    justify-content: space-between;
}

.intake-summary-details-right p:first-of-type{
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.intake-summary-details-right p:last-of-type{
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 1rem;
}

.intake-summary-details-right p:last-of-type span{
    font-size: 2.4rem;
    font-weight: 600;
}


@media screen and (max-width: 1200px) {


}

@media screen and (max-width: 960px) {
    .intake-header{
        margin-bottom: 2rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .intake-header h2{
        font-size: 3rem;
        line-height: 4rem;
    }
    
    .intake-header p{
        font-size: 1.4rem;
        color: var(--fontdark);
    }
    
    .intake-header a{
        font-size: 1.8rem;
        color: var(--fontdark);
    }

    .intake-form-header {
        flex-direction: column;
    }
}

@media screen and (max-width: 450px) {
    

    .intake-header h2{
        font-size: 23px;
        line-height: 4rem;
    }
    .intake-header a{
        font-size: 1.4rem;
    }
    .intake-container{
        padding: 0 20px;
    }
    .intake-submission {
        overflow-x: scroll;
    }
}
/* Intake End */

/* misc page */

.misc-page {
    width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
    flex-grow: 1;
}

.misc-page #login-onpage {
    left: 0;
    z-index: 1;
}

.misc-page .main {
    display: flex;
    flex-direction: column;
	padding: 4rem 0rem;
	width: 100%;
	max-width: 128rem;
	margin: 0rem 2rem;
}

.misc-page .login-container {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;

    margin: 0 auto;
    text-align: center;
    max-width: 500px;
    flex-grow: 1;
}

.misc-page .login-success {
    display: none;
    flex-flow: column;
    justify-content: center;
    align-items: center;

    margin: 0 auto;
    text-align: center;
    max-width: 500px;
    flex-grow: 1;
}

/* end misc page */

/* modals */

.modal-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 10000;
    overflow-y: auto;
}

.modal {
    position: relative;
    width: 70%;
    background: #ffffff;
    padding: 50px 25px;
    margin: 0 auto;
}

.modal p,
.modal ol {
    margin: 10px 0 0 0;
    font-size: 11pt;
}

.modal ol {
    list-style-type: decimal;
    margin-left: 25px;
}

.modal .close-button {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    height: 25px;
    width: 25px;
    background: transparent url(../img/modal-close.svg) no-repeat center center;
    cursor: pointer;
}

/* end modals */


#NGCTooltip {
    z-index: 100;
    display: none;
    width: auto;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #ccc;
    background: #fff;
    padding: 15px 24px;
    font-size: 13px;
}
#NGCTooltip code.example {
    border-radius: 3px;
    padding: 1px; 
    border: 1px solid #ccc; 
    background-color: #E8F0F9;
}
#NGCTooltip div#title {
    border-bottom: 1px dotted #ccc;
    padding-bottom: 8px;
    margin-bottom: 10px;
    font-size: 14px;
}
#NGCTooltip strong.subtitle {
    color: #11253C;
    padding-bottom: 6px;
    text-decoration:underline;
}

#NGCTooltip .closebut {
    font-size: 18px;
    position: absolute;
    top: 5px;
    right: 5px;
}

.pagination-in-vault,
.pagination-processing {
    clear: both;
    overflow: hidden;
    width: 100%;
}

.vault-card-content-loading .loading {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8) url("../img/loading.gif") no-repeat center center;
    z-index: 9999;
}

.vault-card-img-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.vault-card-img-placeholder .loading {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 99%;
    height: 99%;
    background: rgba(0, 0, 0, 0.2) url("../img/loading-buffering.gif") no-repeat center center;
    z-index: 9999;
    background-size: 25px 25px; /* Spinner size */
}

.box-error {
    background-color: var(--red);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 2rem;
}
.box-error .clear {
    clear: both;
    overflow: hidden;
}
.box-error .left {
    float: left;
    margin-right: 10px;
}
.box-error .material-symbols-outlined {
    font-size: 16px;
    vertical-align: middle;
}
.box-error h5 {
    font-size: 14px;
    margin: 0 0 0.5rem 0;
}
.box-error h5 b {
    margin-right: 10px;
}

#limit_counter {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}
