.alert-danger {
 color: #d30000;
    padding-top: 10px;
}
#login-page {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin: 50px 0;
    position: relative;
}
#login-page:before{
    width: 1px;
    background: var(--border-color);
    height: 100%;
    left: 50%;
    top: 0;
    content: '';
    position: absolute;
}
#login-page p {
    margin: 35px 0;
    font-size: 14px;
}
#login-page .register,
#login-page .login {
    text-align: center;
    box-sizing: border-box;
    padding: 50px 50px;
    margin: 20px 0 50px 0;
}

#login-page .register p:first-of-type,
#login-page .login p:first-of-type {
    margin-top: 20px;
}

#login-page .register .btn.btn-primary,
#login-page .login input[type=submit] {
    padding: 15px 20px 15px 40px;
    font-weight: 500;
    border: 0;
    font-size: 15px;
    color: #fff;
    display: block;
    margin: 25px auto;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 22px;
    max-width: 400px;
}

#login-page .login .form-group {
    position: relative;
    max-width: 400px;
    margin: auto auto 15px;
}

#login-page .login .form-group .control-label.focused {
    font-size: 11px;
    top: 10px;
}

#login-page .login .form-group .control-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    transition: ease 0.25s;
}

#login-page .login .form-group input {
    width: 100%;
    padding: 22px 20px 5px 20px;
    font-size: 14px;
    background: #fff;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}
#account-forgotten .wnrow{
    max-width: 450px;
}
#account-forgotten #content{
    margin:50px 0 50px 0;
    padding:0 20px 20px 20px;
    box-sizing: border-box;
    border-radius: 4px;
}
#account-forgotten #content p{
    font-size: 14px;
    line-height: 1.36em;
    margin: 0 0 20px 0;
    padding: 0;
    text-align: justify;
}
#account-forgotten .form-group label{
    display: none;
}
#account-forgotten .form-group input{
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    font-size: 14px;
    padding: 12px 20px;
    width: 100%;
}
#account-forgotten .buttons{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 0 0;
}
#account-forgotten .buttons .btn-primary{
    border-radius: 25px;
}
#account-forgotten .buttons .btn-default{
    font-size: 14px;
    font-weight: 400;
}
#account-register {
    background: #f6f6f6;
    max-width: 400px;
    padding: 25px 50px;
    margin: 30px auto 50px;
}

#account-register .row {
    justify-content: center;
}

#account-register h1 {
    font-size: 25px;
}

#account-register p {
    text-align: center;
    font-size: 15px;
}

#account-register form {
    width: 100%;
}

#account-register .col-sm-10 input {
    display: flex;
    width: 100%;
    max-width: 300px;
    cursor: pointer;
    padding: 15px 25px;
    border: 1px solid grey;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 10px;
    background-color: transparent;
}

#account-register .control-label {
    display: none;
}

#account-register .buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

#account-register .agree-cnt {
    padding-left: 20px;
    position: relative;
}

#account-register .agree-cnt input[type=checkbox] {
    box-sizing: border-box;
    width: unset !important;
    margin: 0;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
}

#account-register .buttons input[type=submit] {
    padding: 20px;
    font-size: 15px;
}

#account-account .row,
#account-edit .row,
#account-password .row {
    justify-content: center;
    margin: 50px auto !important;
}

#account-account .row ul {
    display: grid;
    list-style: none;
    gap: 15px 20px;
    grid-template-columns: repeat(4, 1fr);
}

#account-account .row li {
    padding: 20px;
    text-align: center;
    background: var(--primary-color);
}

#account-account .row li:hover {
    background: #e58655;
}

#account-account .row li a {
    font-size: 14px;
    border-radius: 0;
    font-weight: 400;
    color: #fff;
}

#account-edit #content,
#account-password #content {
    max-width: 500px;
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    padding: 20px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    box-shadow: 0 8px 18px -4px rgba(0, 0, 0, 0.05);
}

#account-password #content {
    max-width: 400px;
}

#account-edit .control-label,
#account-password .control-label {
    position: absolute;
    top: 5px;
    left: 10px;
    z-index: 15;
    font-size: 11px;
    margin-bottom: 5px;
}

#account-edit .form-group,
#account-password .form-group {
    position: relative;
}

#account-edit fieldset,
#account-password fieldset {
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
}

#account-edit .col-sm-10 input,
#account-password .col-sm-10 input {
    display: block;
    width: calc(100% - 40px);
    height: 34px;
    padding: 10px 12px 6px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#account-edit h1,
#account-password h1 {
    text-align: center;
}

#account-edit .buttons.clearfix,
#account-password .buttons.clearfix {
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
    align-items: center;
}

#account-edit .buttons.clearfix input,
#account-password .buttons.clearfix input {
    cursor: pointer;
}

#account-edit .buttons.clearfix a,
#account-password .buttons.clearfix a {
    font-size: 14px;
}

#account-edit .buttons.clearfix a:hover,
#account-password .buttons.clearfix a:hover {
    color: #e58655;
}

/*ACCOUNT WISHLIST */

#account-wishlist .row,
#account-order .row {
    margin: 30px auto 50px auto !important;
    flex-direction: column;
}

#account-wishlist {
    margin-bottom: 30px !important;
}

#account-wishlist .nslt-cnt {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #f6f6f6;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

#account-wishlist .wishlist-header {
    font-weight: bold;
}

#account-wishlist .nslt-cnt img {
    width: 100%;
}

#account-wishlist .item-row {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #ababab;
}

#account-wishlist .item-row:last-child {
    border: 0;
}

#account-wishlist .item-row .col-1, #account-wishlist .item-row .col-6 {
    flex: 0 0 100px !important;
    width: 100px !important;
}

#account-wishlist .wishlist-header .col {
    flex: 0 0 calc(33.33% - 66px);
    width: calc(33.33% - 66px);
}

#account-wishlist .item-row .col-specs {
    flex: 0 0 calc(100% - 200px);
    display: flex;
}

#account-wishlist .item-row .col-specs .col {
    flex: 0 0 33.33%;
    width: 33.33%;
}

#account-wishlist .item-row .col:last-of-type {
    display: flex;
    align-items: center;
}

#account-wishlist .item-row .col button {
    background: transparent;
    padding: 0;
    border: none;
    cursor: pointer;
    width: 20px;
    margin-right: 10px;
    font-size: 0;
}

#account-wishlist .item-row .col-6 button:last-child {
    margin-right: 0;
    width: 25px;
    height: 25px;
}

#account-wishlist .item-row .col-6 a {
    font-size: 0;
    width: 20px;
    height: 20px;
    position: relative;
}

#account-wishlist .item-row .col-6 a::before, #account-wishlist .item-row .col-6 a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 20px;
    background: #bb0000;
}

#account-wishlist .item-row .col-6 a::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

#account-wishlist .item-row .col-6 a::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

#account-wishlist .item-row .col-6 button img {
    max-width: 100%;
}

#account-wishlist .alert-success {
    margin: 0 0 20px 0;
    font-weight: 500;
    color: #009d00;
}

/*ACCOUNT ORDER*/

#account-order {
    margin: 40px auto 60px auto;
}

#account-order h1 {
    flex: 0 0 100%;
    font-size: 24px;
}

#account-order .table-responsive {
    flex: 0 0 100%;
    overflow: auto;
    margin: 10px 0;
    background: #f6f6f6;
    padding: 20px;
    height: fit-content;
    box-sizing: border-box;
}

#account-order .table-responsive table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

#account-order .table-responsive table td {
    line-height: 20px;
    padding: 6px 8px 4px 8px;
}

#account-order .table-responsive table .icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

#account-order .table-responsive table .icons a {
    padding: 0;
}

#account-order .table-responsive table td a img {
    max-width: 25px
}

#account-order .table-responsive table thead {
    background: #e58655;
    color: #fff;
    font-weight: bold;
}

#account-order .table-responsive table thead td {
    padding: 12px 6px;
    line-height: 20px;
}

#account-order .table-responsive table tr:nth-child(even) {
    background: #f9f9f9;
}

#account-order .single-button {
    flex: 0 0 100%;
    margin: 10px 0;
}

#account-order .view {
    font-size: 18px;
    color: #7a8aff;
}

#account-order .totals {
    background: #f6f7f9;
    margin: 15px 0;
    padding: 5px;
}

#account-order .icons .btn.btn-primary {
    background: none;
}

/*ACCOUNT RETURN*/

#account-return .row {
    margin: 50px auto 50px auto !important;
}

#account-return #content {
    width: 100%;
    background: #f6f6f6;
    box-sizing: border-box;
    padding: 20px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    box-shadow: 0 8px 18px -4px rgba(0, 0, 0, 0.05);
}

#account-return .col-6 {
    flex: 0 0 50%;
    width: 50%;
    padding: 10px 20px;
    box-sizing: border-box;
}

#account-return .col-6 label {
    font-size: 16px;
    display: block;
    margin: 0 0 10px 0;
}

#account-return input {
    width: 100%;
    padding: 10px 20px 10px 20px;
    font-size: 16px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#account-return fieldset {
    background: #fff;
    padding: 20px 10px;
    margin-bottom: 30px;
    border: none;
    border-radius: 4px;
    box-shadow: 0 8px 18px -4px rgba(0, 0, 0, 0.05);
}

#account-return fieldset .row {
    padding: 20px;
    flex-flow: row wrap;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

#account-return span {
    font-size: 18px;
    padding: 0 15px
}

#account-return .col-4 {
    margin: 30px 0;
    flex-grow: 1;
    padding: 10px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column nowrap;
}

#account-return .col-4 > label {
    font-size: 17px;
    margin-bottom: 10px;
}

#account-return .col-4 .radio,
#account-return .col-4 .radio-inline {
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
}

#account-return .col-4 .radio label,
#account-return .col-4 .radio-inline label {
    width: 100%;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: flex-start;
    flex-flow: row nowrap;
}

#account-return .col-4 .radio label input,
#account-return .col-4 .radio-inline input {
    width: 20px;
}

#account-return .col-12 {
    flex: 0 0 calc(100% - 40px);
    width: calc(100% - 40px);
    display: flex;
    align-items: self-start;
    justify-content: flex-start;
    flex-direction: column;
    padding: 0 20px;
}

#account-return .col-12 label {
    font-size: 17px;
    margin-bottom: 10px;
}

#account-return .col-12 textarea {
    font-size: 16px;
    width: calc(100% - 20px);
    height: 40%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#account-return .buttons {
    display: flex;
    justify-content: space-between;
    align-items: center
}

#account-return .buttons .pull-left {
    margin-bottom: 30px
}

#account-return .buttons .pull-left a {
    font-size: 18px;
    background: #000;
    color: #fff;
    padding: 10px 30px;
}

#account-return .buttons .pull-right {
    width: 100%
}

#account-return .buttons .pull-right input {
    width: 20px;
    margin-bottom: 20px;
}

#account-return .radio label {
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    padding: 15px 20px 15px 20px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

#account-return .radio {
    margin: 0 15px 8px 0;
    padding: 0;
}

#account-return .radio input[type="radio"] {
    margin: 0;
}

#account-return .btn-default:hover {
    color: #e58655;
}

#account-return .text-danger {
    color: #d30000;
}

#account-return-list .row {
    margin: 30px auto 50px auto !important;
    flex-direction: column;
}

#account-return-list .rtn-cnt {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #f6f6f6;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

#account-return-list .return-header {
    font-weight: bold;
}

#account-return-list .rtn-cnt img {
    width: 100%;
}

#account-return-list .item-row {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #ababab;
}

#account-return-list .item-row:last-child {
    border: 0;
}

#account-return-list .return-header .col {
    flex: 0 0 16.66%;
    width: 16.66%;
}

#account-return-list .item-row.col-specs .col {
    flex: 0 0 16.66%;
    width: 16.66%;
}

#account-return-list .item-row .col-6 {
    display: flex;
    align-items: center;
}

#account-return-list .item-row .col button {
    background: transparent;
    padding: 0;
    border: none;
    cursor: pointer;
    width: 20px;
    margin-right: 10px;
    font-size: 0;
}

#account-return-list .item-row .col-6 button:last-child {
    margin-right: 0;
    width: 25px;
    height: 25px;
}

#account-return-list .item-row .col-6 a {
    font-size: 0;
    width: 20px;
    height: 20px;
    position: relative;
}

#account-return-list .item-row .col-6 button img {
    max-width: 100%;
}

.alert-success {
    margin: 0 0 20px 0;
    font-weight: 500;
    color: #009d00;
}

#account-return-info {
    margin: 40px auto 60px auto;
}

#account-return-info #content {
    background: #f6f6f6;
    padding: 20px;
}

#account-return-info .row {
    margin: 30px auto 50px auto !important;
    flex-direction: column;
}

#account-return-info .table-top {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#account-return-info .table-top tbody tr {
    display: flex;
}

#account-return-info td {
    line-height: 20px;
    padding: 6px;
}

#account-return-info .table-responsive {
    flex: 0 0 100%;
    overflow: auto;
    margin: 10px 0;
    height: fit-content;
    box-sizing: border-box;
}

#account-return-info .table-responsive table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

#account-return-info .table-responsive table thead {
    background: #e58655;
    color: #fff;
    font-weight: bold;
}

#account-return-info .table-responsive table thead td {
    padding: 12px 6px;
    line-height: 20px;
}

#account-newsletter .row {
    justify-content: center;
    margin: 50px auto !important;
}

#account-newsletter #content {
    max-width: 350px;
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    padding: 20px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    box-shadow: 0 8px 18px -4px rgba(0, 0, 0, 0.05);
}

#account-newsletter fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

#account-newsletter label {
    font-size: 17px;
    margin-bottom: 10px;
}

#account-newsletter .radio label {
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    padding: 15px 20px 15px 20px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

#account-newsletter .radio {
    margin: 0 0 8px 0;
    padding: 0;
}

#account-newsletter .radio input[type="radio"] {
    margin: 0;
}

#account-newsletter .radio-inline {
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
}

#account-newsletter .radio-inline label {
    width: 100%;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: flex-start;
    flex-flow: row nowrap;
}

#account-newsletter .radio-inline input {
    width: 20px;
}

#account-newsletter .buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#account-newsletter .btn {
    cursor: pointer;
}

#account-newsletter .btn-default:hover {
    color: #e58655;
}


@media only screen and (max-width: 1300px) {
    #account-return .col-12 textarea {
        width: 90%
    }
}
@media only screen and (max-width: 986px) {
    #login-page {
        grid-template-columns: 1fr;
        grid-gap: 60px;
    }
    #login-page .register, #login-page .login{ margin:0; padding: 40px 10px;}
    #login-page:before{ display: none; }
    #login-page .login{ position: relative; }
    #login-page .login:before {
        content: '';
        position: absolute;
        top: -30px;
        left: 0;
        background: var(--border-color);
        height: 1px;
        width: 100%;
    }
}
@media only screen and (max-width: 600px) {

    #account-return .col-4 {
        margin: 10px 0;
    }

    #account-return .col-6 {
        flex: 0 0 100%;
        width: 100%;
        padding: 10px 0;
    }

    #account-return .buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #account-return .buttons .pull-right {
        text-align: center;
    }

    #account-return .buttons .pull-right .btn-primary {
        width: 80%;
    }
}


@media screen and (max-width: 768px) {
    #account-wishlist .wishlist-header {
        display: none;
    }

    #account-wishlist .item-row .col-1, #account-wishlist .item-row .col-6 {
        flex: 0 0 60px !important;
        width: 60px !important;
    }

    #account-wishlist .item-row .col-specs {
        flex: 0 0 calc(100% - 120px);
        display: flex;
        flex-direction: column;
    }

    #account-wishlist .item-row .col-specs .col {
        flex: 0 0 100%;
        width: 100%;
    }

    #account-wishlist .item-row .col-specs .col-3 {
        font-size: 12px;
    }
}