

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

@media (max-width: 480px) {
    aside {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        padding: 0px;
    }
    .link-section {
        padding-bottom: 15px;
    }
}

.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: var(--button-color);
}
.link-section a:hover {
    color: var(--hover-color);
}
.active {
    /* background-image: url('/icon/arrow-active.svg'); */
    background-position: 20px 50%;
    background-size: 16px;
    background-repeat: no-repeat;
}


/* ------------------- Article ------------------- */
article{
    background-color: white;
}
.profile-container {
    display: block;
    width: 80%;
}
.profile-block {
    display: flex;
    flex-direction: column;
    /* width: 100%; */
    padding-top: 20px;
    /* padding-left: 40px; */
    /* background-color: white; */
}
.profile-block p {
    font-family: var(--alter-font);
    padding: 0px 10px 0px 10px;
    font-weight: 600;
}


textarea {
    width: 100%;
    height: 90px;
    max-height: 340px;
    border: 0px;
  
    padding: 20px;
    margin: 10px 0px 10px 0px;
    box-sizing: border-box;
    resize: vertical;
  
    font-size: 12pt;
    background-color: white;
  
    filter: drop-shadow(1px 1px 3px var(--hover-color));
    -webkit-filter: drop-shadow(1px 1px 3px var(--hover-color));
  }
  textarea:active, textarea:focus, .text-input:active, .text-input:focus {
    transition: transform 0.2s;
    border: 2px solid var(--button-color);
    outline: none;
  }

.text-input {
    width: 100%;
    max-width: 400px;
    height: 40px;
    border: 3px solid var(--start-button-color);
    border-radius: 30px;
    padding: 5px 5px 5px 35px;
    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: 3px solid var(--start-button-color);
    border-radius: 30px;
    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: 3px solid var(--start-button-color);
    border-radius: 30px;
    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: 180px;
    height: 40px;
    border: 3px solid var(--start-button-color);
    border-radius: 30px;
    background: url('/icon/eur.svg') no-repeat left +10px center;
    background-size: 12pt;
    padding: 5px 5px 5px 35px;
    box-sizing: border-box;
    margin: 0px 5px 10px 0px;
}
.amount-input {
    width: 100%;
    max-width: 180px;
    height: 40px;
    border: 3px solid var(--start-button-color);
    border-radius: 30px;
    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: 3px solid var(--start-button-color);
    border-radius: 30px;
    padding: 5px 5px 5px 5px;
    box-sizing: border-box;
    margin: 0px 10px 10px 0px;
}
.email-input {
    width: 100%;
    max-width: 250px;
    height: 40px;
    border: 3px solid var(--start-button-color);
    border-radius: 30px;
    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: 3px solid var(--button-color);
    outline: none;
}
.save-button { /* override of button from styles.css */
    height: 40px;
}

.long-input {
    width: 500px;
    max-width: 500px;
}
@media (max-width: 480px) {
    .long-input {
        width: 100%;
        max-width: 500px;
    }
}

/* ------------------- 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: var(--start-active-color);
    padding: 10px;
    color: white;
}
.pricing-table td {
    padding: 10px 0px 10px 25px;
    border-bottom: 1px solid var(--basic-bg-color);
}
.total-price {
    font-weight: 600;
    color: var(--button-color);
}
.profile-block input[type="checkbox"] {
    margin-right: 5px;
    width: 15px;
    height: 15px;
    color: var(--button-color);
}
.profile-block a {
    color: var(--button-color);
    text-decoration: none;

}
.profile-block a:hover {
    color: var(--hover-color);
}
.ok-button {
    width: 250px;
}
/* ------------------- Section Footer ------------------- */

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