
/* =================================
// account widget design
====================================*/
.widget.widget-account {
    overflow: visible;
}
.widget-account-inner {
    display: inline-block;
    position: relative;
}
.widget-account-inner .menu-button-for-redirection {
    height: 44px;
    width: 44px;
    background: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E %3Cg%20clip-path%3D%22url%28%23clip0_1036_1816%29%22%3E %3Cpath%20d%3D%22M12%200C5.373%200%200%205.373%200%2012C0%2018.627%205.373%2024%2012%2024C18.627%2024%2024%2018.627%2024%2012C24%205.373%2018.627%200%2012%200ZM19.753%2018.305C19.492%2017.719%2018.964%2017.314%2017.882%2017.064C15.589%2016.535%2013.454%2016.071%2014.489%2014.119C17.634%208.177%2015.322%205%2012%205C8.612%205%206.356%208.299%209.511%2014.119C10.577%2016.083%208.363%2016.546%206.118%2017.064C5.034%2017.314%204.51%2017.722%204.251%2018.31C2.846%2016.587%202%2014.391%202%2012C2%206.486%206.486%202%2012%202C17.514%202%2022%206.486%2022%2012C22%2014.389%2021.155%2016.583%2019.753%2018.305Z%22%20fill%3D%22black%22%2F%3E %3C%2Fg%3E %3Cdefs%3E %3CclipPath%20id%3D%22clip0_1036_1816%22%3E %3Crect%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22white%22%2F%3E %3C%2FclipPath%3E %3C%2Fdefs%3E %3C%2Fsvg%3E") no-repeat center;
    filter: contrast(0.2);
    cursor: pointer;
    background-size: 44px;
}
.header .widget-account-inner .menu-button-for-redirection {
    height: 24px;
    width: 24px;
    background-size: 24px;
}
.widget-account-inner .menu-button-for-redirection:hover {
    filter: contrast(0.8);
}
.widget-account-inner .menu-button-for-redirection em {
    display: none;
}
.widget-account-inner .quick-login-wrapper {
    position: absolute;
    left: calc(50% - 140px);
    top: 52px;
    padding: 20px;
    width: 280px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0, .2);
    border-radius: 7px;
    z-index: 1;
}
.header .widget-account-inner .quick-login-wrapper {
    top: 32px;
}
.widget-account-inner .quick-login-wrapper:before,
.widget-account-inner .quick-login-wrapper:after {
    content: "";
    height: 0;
    width: 0;
    border-style: solid;
    position: absolute;
}
.widget-account-inner .quick-login-wrapper:before {
    border-width: 0 7px 7px 7px;
    border-color: transparent transparent #afafaf transparent;
    left: calc(50% - 7px);
    top: -7px;
}
.widget-account-inner .quick-login-wrapper:after {
    border-width: 0 6px 6px 6px;
    border-color: transparent transparent #fff transparent;
    left: calc(50% - 6px);
    top: -6px;
}
.widget-account-inner form.login-form {
    width: auto;
    margin: 0;
    padding: 0;
    background: none;
}
.widget-account-inner form.login-form .form-row {
    margin: 0;
    float: none;
}
.widget-account-inner form.login-form .form-row + .form-row {
    margin-top: 20px
}
.widget-account-inner form.login-form label {
    display: block;
    width: 100%;
    padding-bottom: 5px;
    font-weight: 500;
    color: #222;
}
.widget-account-inner form.login-form input[type="text"],
.widget-account-inner form.login-form input[type="password"] {
    margin: 0;
    width: 100%;
    padding: 12px;
    border: 1px #ddd solid;
    border-radius: 5px;
    transition: all 300ms ease-out 0s;
}
.widget-account-inner form.login-form input[type="text"]:focus,
.widget-account-inner form.login-form input[type="password"]:focus {
    border: 1px #000000 solid;
}
.widget-account-inner form.login-form input[type="checkbox"] {
    margin: 0;
}
.widget-account-inner form.login-form .form-row.remember-forget-pass {
    /* @alternate */ display: -webkit-box;
    /* @alternate */ display: -ms-flexbox;
    display: flex;
    /* @alternate */ -webkit-box-align: center;
    /* @alternate */ -ms-flex-align: center;
    align-items: center;
    /* @alternate */ -webkit-box-pack: justify;
    /* @alternate */ -ms-flex-pack: justify;
    justify-content: space-between;
}
.widget-account-inner form.login-form .remember-forget-pass .remember {
    margin: 0;
    /* @alternate */ display: -webkit-box;
    /* @alternate */ display: -ms-flexbox;
    display: flex;
    /* @alternate */ -webkit-box-align: center;
    /* @alternate */ -ms-flex-align: center;
    align-items: center;
    gap: 0 10px;
}
.widget-account-inner form.login-form .lost-password a {
    text-decoration: underline;
}
.widget-account-inner form.login-form .login-button {
    width: 100%;
    font-size: 18px;
    color: #fff;
    background-color: #000;
    border-radius: 5px;
    padding: 10px 15px;
}
.widget-account-inner form.login-form .login-button:hover {
    background-color: #333333;
}
.widget-account-inner form.login-form .form-row .new-customer,
.widget-account-inner form.login-form .form-row .account-register a {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}
.widget-account-inner form.login-form .form-row .new-customer {
    font-weight: 500;
}
.widget-account-inner form.login-form .form-row .account-register a {
    text-decoration: underline;
}
.widget-account-inner form.login-form .form-row .account-register a:hover {
    color: #666;
}
.widget-account-inner  .quick-login-wrapper span.lost-password {
    /* @alternate */ -webkit-box-flex: 0;
    /* @alternate */ -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.widget-account-inner .redirection-panel-options {
    padding: 0;
    position: absolute;
    top: 58px;
    left: calc(50% - 125px);
    width: 250px;
    background-color: #ffffff;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
    border-radius: 5px;
    z-index: 1;
}
.header .widget-account-inner .redirection-panel-options {
    top: 34px;
}
.widget-account-inner .redirection-panel-options a {
    font-size: 14px;
    color: #222;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px #e7e7e7 solid;
    cursor: pointer;
}
.widget-account-inner .redirection-panel-options a:hover {
    color: #939393;
}
.widget-account-inner .redirection-panel-options div:last-child a {
    border-bottom: none;
}
.widget-account-inner .redirection-panel-options:before,
.widget-account-inner .redirection-panel-options:after {
    content: "";
    height: 0;
    width: 0;
    border-style: solid;
    position: absolute;
}
.widget-account-inner .redirection-panel-options:before {
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent #dcdbdb transparent;
    top: -8px;
    left: calc(50% - 8px);
}
.widget-account-inner .redirection-panel-options:after {
    border-width: 0 7px 7px 7px;
    border-color: transparent transparent #ffffff transparent;
    top: -7px;
    left: calc(50% - 7px);
}
.widget-account-inner .redirection-panel-options div a {
    padding: 10px 20px;
    border: none;
}
.widget-account-inner .redirection-panel-options .redirect-to-register-item-menu {
    padding: 0 20px 15px 20px;
    /* @alternate */ display: -webkit-box;
    /* @alternate */ display: -ms-flexbox;
    display: flex;
    /* @alternate */ -webkit-box-pack: justify;
    /* @alternate */ -ms-flex-pack: justify;
    justify-content: space-between;
}
.widget-account-inner .redirection-panel-options .redirect-to-register-item-menu:first-child {
    padding-top: 15px;
}
.widget-account-inner .redirection-panel-options .redirect-to-register-item-menu a {
    padding: 0;
    font-weight: 400;
    text-decoration: underline;
}
.widget-account-inner .redirection-panel-options .redirect-to-register-item-menu .new-customer {
    font-size: 14px;
    font-weight: 600;
}
.widget-account-inner .redirection-panel-options .redirect-to-profile-item-menu a {
    border-top: 1px #e7e7e7 solid;
}
.widget-account-inner .redirection-panel-options .redirect-to-profile-item-menu:only-child a {
    border-top: none;
}
.widget-account-inner .redirection-panel-options .redirect-to-login-item-menu {
    /* @alternate */ display: -webkit-box;
    /* @alternate */ display: -ms-flexbox;
    display: flex;
    /* @alternate */ -webkit-box-pack: center;
    /* @alternate */ -ms-flex-pack: center;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 15px;
    /* @alternate */ -webkit-box-align: center;
    /* @alternate */ -ms-flex-align: center;
    align-items: center;
    position: relative;
}
.widget-account-inner .redirection-panel-options .redirect-to-login-item-menu a {
    display: inline-block;
    background-color: #000;
    border-radius: 17px;
    padding: 7px 35px;
    color: #fff;
}
.widget-account-inner .redirection-panel-options .redirect-to-login-item-menu a:hover {
    background-color: #333;
}
.widget-account-inner .redirection-panel-options .customer-circular-image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}
.widget-account-inner .redirection-panel-options .customer-image-name-wrapper {
    /* @alternate */ display: -webkit-box;
    /* @alternate */ display: -ms-flexbox;
    display: flex;
    /* @alternate */ -webkit-box-align: center;
    /* @alternate */ -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    /* @alternate */ -webkit-box-flex: 1;
    /* @alternate */ -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding-left: 20px;
    padding-right: 72px;
}
.widget-account-inner .redirection-panel-options .nav-customer-name {
    font-size: 14px;
    font-weight: 600;
}
.widget-account-inner .redirection-panel-options .redirect-to-login-item-menu a[href="/customer/logout"] {
    padding: 0;
    background: none;
    color: #525151;
    font-size: 13px;
    text-decoration: underline;
    position: absolute;
    top: 21px;
    right: 19px;
}
.widget-account-inner .redirection-panel-options .redirect-to-login-item-menu a[href="/customer/logout"]:hover {
    color: #8b8b8b;
}

/* -- account widget design:end --- */