

/* ------------------- Sidebar additional------------------- */
aside {
    height: 100%;
    background-size: cover;
}

.link-section{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-section a {
    text-decoration: none;
    flex-grow: 1;
    flex-basis: 100%;
    max-width: 100%;
    padding: 0px 0px 0px 50px;
    color: #8b7dfc;
}
.link-section a:hover {
    color: #6d41ea;
}
.active {
    background-image: url('/icon/arrow-active.svg');
    background-position: 20px 50%;
    background-size: 16px;
    background-repeat: no-repeat;
}


/* ------------------- Article ------------------- */

.profile-container {
    display: block;
    width: 80%;
}
.profile-block {
    display: block;
    width: 100%;
    border-top: 1px solid #8b7dfc;
    padding-bottom: 20px;
    background-color: white;
}
.profile-block textarea {
    width: 100%;
    height: 100px;
    max-width: 450px;
    border: 1px solid #8b7dfc;
    border-radius: 10px;
    padding: 15px 5px 5px 15px;
    box-sizing: border-box;
    background-color: transparent;
    backdrop-filter: blur(8px);
}

.text-input {
    width:100%;
    max-width: 450px;
    height: 40px;
    border: 1px solid #8b7dfc;
    border-radius: 10px;
    padding: 5px 5px 5px 15px;
    box-sizing: border-box;
    background-color: transparent;
    backdrop-filter: blur(8px);
    margin: 0px 10px 10px 0px;
}
.password-input {
    width:100%;
    max-width: 250px;
    height: 40px;
    border: 1px solid #8b7dfc;
    border-radius: 10px;
    background: url('/icon/pw.svg') no-repeat left +10px center;
    background-size: 12pt;
    padding: 5px 5px 5px 35px;
    box-sizing: border-box; /* Ensure padding is included in the element's total width */ 
    margin: 0px 10px 10px 0px;
}

.input-to-button {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.tokens-input {
    width:100%;
    max-width: 250px;
    height: 40px;
    border: 1px solid #8b7dfc;
    border-radius: 10px;
    background: url('/icon/coins.svg') no-repeat left +10px center;
    background-size: 12pt;
    padding: 5px 5px 5px 35px;
    box-sizing: border-box; 
    margin: 0px 10px 10px 0px;
}
.eur-input {
    width: 100%;
    max-width: 250px;
    height: 40px;
    border: 1px solid #8b7dfc;
    border-radius: 10px;
    background: url('/icon/eur.svg') no-repeat left +10px center;
    background-size: 12pt;
    padding: 5px 5px 5px 35px;
    box-sizing: border-box;
    margin: 0px 10px 10px 0px;
}
.amount-input {
    width: 100%;
    max-width: 180px;
    height: 40px;
    border: 1px solid var(--button-color);
    border-radius: 10px;
    padding: 5px 5px 5px 10px;
    box-sizing: border-box;
    margin: 0px 5px 10px 0px;
}
.ccy-input {
    width: 100%;
    min-width: 60px;
    max-width: 60px;
    font-size: 9pt;
    height: 40px;
    border: 1px solid var(--button-color);
    border-radius: 10px;
    padding: 5px 5px 5px 5px;
    box-sizing: border-box;
    margin: 0px 10px 10px 0px;
}
.email-input {
    width: 100%;
    max-width: 250px;
    height: 40px;
    border: 1px solid #8b7dfc;
    border-radius: 10px;
    background: url('/icon/email2.svg') no-repeat left +10px center;
    background-size: 12pt;
    padding: 5px 5px 5px 35px;
    box-sizing: border-box;
    margin: 0px 10px 10px 0px;
}
.password-input:focus, .email-input:focus, .text-input:focus, .eur-input:focus, .tokens-input:focus, .profile-block textarea:focus, .amount-input:focus, .ccy-input:focus {
    border-color: #5f33cf;
    outline: none;
}
.save-button { /* override of button from styles.css */
    height: 40px;
}




/* ------------------- Order Table on checkout page ------------------- */
.pricing-table {
    margin-top: 20px;
    width: 100%;
    max-width: 450px;
    align-self: center;
    border-collapse: collapse;
}
.pricing-table th {
    background-color: #edeeff;
    padding: 10px;
}
.pricing-table td {
    padding: 10px 0px 10px 25px;
    border-bottom: 1px solid #edeeff;
}
.total-price {
    font-weight: 600;
    color: #4e2ca7;
}
.profile-block input[type="checkbox"] {
    margin-right: 5px;
    width: 15px;
    height: 15px;
    color: #8b7dfc;
}
.profile-block a {
    color: #8b7dfc;
    text-decoration: none;

}
.profile-block a:hover {
    color: #5f33cf;
}
.ok-button {
    width: 250px;
}
/* ------------------- Section Footer ------------------- */

section{
    padding-top: 100px;
    background-size: cover;
  }
