body > header{
    position: fixed;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 8px;
    background-color: #fff;
    z-index: 100;
}
body > header > div{
    display: flex;
    margin: 0 auto;    
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    max-width: 1050px;
    height: 64px;
}
body > header button{
    border: 0px;
    padding: 0px;
    margin: 0px;
    background: none;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    height: max-content;
    width: max-content;
    cursor: pointer;
}
body > header .logo{
    margin-left: -8px;
    width: 58px;
    height: 40px;
    object-fit: contain;
    fill: none;
}
body > header .logo path{
    fill: rgb(75, 83, 152) !important;
}
body > header .btn-menu-close{
    display: none;
}
body > header .title{
    padding: 0 16px;
    flex-grow: 1;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: rgb(72, 77, 89);
    text-align: left;
}
body > header .subtitle{
    display: none;
    margin-top: 2px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    color: rgb(141, 149, 167);
}

nav, .profile-modal, .report-modal, .modal-logout{
    position: fixed;
    top: 64px;
    left: 0px;
    display: none;
    width: 100%;
    height: calc(100% - 64px);
    background-color: rgba(0, 0, 0, 0.64);
    transition: background-color .3s;
    z-index: 5;
}
nav .body, .profile-modal .body, .report-modal .body{
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: column;
    width: 360px;
    height: 100%;
    background-color: #fff;
    transition: right .200s ease-in-out;
}
nav .menu{
    flex-grow: 1;
}
nav ul{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin: 8px;
    padding: 0;
}
nav li{
    list-style: none;
    width: 100%;
}
nav li a{
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 17px 15px 17px 16px;
    color: rgb(106, 116, 134);
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease 0s;
}
nav li a.active{
    color: rgb(54, 75, 116) !important;
    font-weight: 600 !important;
    background-color: rgb(230, 232, 237);
}
nav li a:hover{
    background-color: rgb(239, 240, 242);
    color: rgb(106, 116, 134);
}
nav li a svg{
    margin: -2px 16px 0 0;
}
nav li a span:not(.badge){
    flex-grow: 1;
}
nav li a .badge{
    border: 1px solid #fff;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    background-color: rgb(227, 156, 41);
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 24px;
}
nav .version{
    height: 60px;
    color: rgb(60 75 116);
    font-weight: 400;
    font-size: 14px;
    text-align: center;
}
nav footer{
    display: flex;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding: 8px;
    height: 76px;
}
nav footer .avatar{
    margin: 0px 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgb(75, 83, 152);
    text-align: center;
    line-height: 32px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}
nav footer .saler{
    flex-grow: 1;
    margin-right: 16px;
    max-width: 168px;
    font-size: 12px;
    color: rgb(141, 149, 167);
    text-transform: uppercase;
}
nav footer .saler strong{
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgb(106, 116, 134);
    font-weight: 500;
    font-size: 16px;
}
nav footer .tag{
    border-radius: 12px;
    padding: 0px 8px;
    min-width: 24px;
    height: 24px;
    line-height: 24px;
    background-color: rgb(84, 158, 255);
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
}
nav.closed, .profile-modal.closed, .report-modal.closed{
    background-color: rgba(0, 0, 0, 0);
}
nav.closed .body, .profile-modal.closed .body, .report-modal.closed .body{
    right: -360px;
}

body.login{
    background: #d4a86e;
}
body.login main{
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    justify-content: center;
    align-items: center;
    height: 100%;
}
body.login main > div{
    display: flex;
    justify-content: center;
    height: 60%;
}
body.login main > div:first-child{
    align-items: center;
    height: 40%;
}
body.login .login-logo svg{
    width: 160px;
    height: 108px;
}
body.login form > div{
    margin-top: -7px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 8px;
    border-color: rgb(239, 240, 242);
    border-radius: 16px;
    padding: 32px 33px 34px;
    width: 500px;
    background-color: #fff;
    color: rgb(106, 116, 134);
    font-weight: 500;
}
body.login form h1{
    margin: 0 0 2vh;
    color: rgb(52, 56, 65);
    line-height: 32px;
    font-weight: 600;
    font-size: 22px;
}
body.login form label{
    margin-bottom: 4px;
    display: block;
    color: rgb(54, 75, 116);
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
}
body.login form input{
    border: 1px solid rgb(215, 218, 224);
    border-radius: 8px;
    height: 40px;
    width: 100%;
    color: rgb(54, 75, 116);
    outline: none;
    padding: 0px 16px;
    font-size: 14px;
    font-weight: 400;
    transition: border .3s;
}
body.login .login-code.warn label, body.login .login-pass.warn label {
    color: rgb(228, 10, 10);
}
body.login form .login-code.warn input, body.login .login-pass.warn input{
    border-color: rgb(228, 10, 10);
}
body.login form input:focus{
    border-color: rgb(75, 83, 152);;
}
body.login form .login-pass{
    position: relative;
    margin: 2vh 0 2vh;
}
body.login form .login-pass input{
    padding-right: 40px;
}
body.login form .login-show{
    position: absolute;
    right: 4px;
    top: 26px;
    border: 0;
    border-radius: 8px;
    width: 31px;
    height: 31px;
    background-color: transparent;
    cursor: pointer;
    transition: background-color .3s;
    outline: none;
}
body.login form .login-show.active .login-show-off{
    margin: 2px 0 0 -3px;
    display: block;
}
body.login form .login-show.active .login-show-on{
    display: none;
}
body.login form .login-show svg{
    margin: 3px 0 0 -3px;
}
body.login form .login-show:hover{
    background-color: rgb(229, 247, 237);
}
body.login form .login-show:hover path{
    fill: rgb(0, 189, 106);
    transition: fill .3s;
}
body.login form .login-show .login-show-off{
    display: none;
}
body.login form .login-remember{
    float: left;
    margin: 1px 8px 0 2px;
    border-radius: 4px;
    border: 2px solid rgb(139, 147, 167);
    width: 20px;
    height: 20px;
    background-color: #fff;
    cursor: pointer;
    transition: border-color .3s, background-color .3s;
}
body.login form .login-remember.active{
    border-color: rgb(0, 189, 106);
    background-color: rgb(0, 189, 106);
}
body.login form .login-remember svg{
    display: none;
    margin: 0px 0 0 -6px;
    width: 16px;
    height: 16px;
}
body.login form .login-remember.active svg{
    display: block;
}
body.login form .login-remember:hover{
    border-color: rgb(0, 189, 106);    
}
body.login form .login-submit{
    margin-top: 3vh;
    border: 0;
    border-radius: 8px;
    height: 40px;
    width: 100%;
    background: rgb(0, 189, 106);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: background-color .3s;
}
body.login form .login-submit:not([disabled]):hover{
    background-color: rgb(0, 106, 49);
}
body.login form .login-submit[disabled]{
    background-color: rgb(215, 218, 224) !important;
    cursor: not-allowed;
}
body.login .login-warn{
    position: fixed;
    left: calc(50% - 140px);
    bottom: 147px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 0 16px;
    height: 40px;
    width: 280px;
    background-color: rgb(228, 10, 10);
    color: #fff;
    font-weight: 500;
    z-index: 10;
}
body.login .login-warn span{
    margin-left: 8px;
}

main{
    position: relative;
    margin: 0 auto;
    padding: 64px 0px 16px;
    min-height: 100%;
    max-width: 1050px;
}
main h1{
    margin: 48px 0px 0px;
    font-size: 30px;
    color: rgb(54, 75, 116);
    line-height: 48px;
}
main p.subtitle{
    margin: 4px 0 18px;
    color: rgb(106, 116, 134);
    font-weight: 400;
    line-height: 20px;
}
main .info{
    display: flex;
    align-items: center;
    margin: 16px 0;
    border: 1px solid rgb(215, 218, 224);
    border-radius: 8px;
    height: 72px;
    background-color: #d4a86e
}
main .info svg{
    margin: 0 24px;
}
main .info span{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #fff;
}
main .info span strong{
    font-weight: 600;
}

main .search{
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgb(215, 218, 224);
    padding: 0px 6px 0px 14px;
    transition: border 0.3s, background-color 0.3s
}
main .search:not(.search-focus):hover{
    border-color: rgb(75, 83, 152);
    background-color: rgb(232, 234, 242);
}
main .search.search-focus{
    border-color: rgb(75, 83, 152);
}
main .search input{
    flex-grow: 1;
    outline: 0;
    border: 0px;
    background-color: transparent;
    color: rgb(75, 83, 152);
    font-weight: 500;
}
main .search button{
    border: 0px;
    padding: 0px;
    margin: 0px;
    background: none;
    cursor: pointer;
}
main .search button svg{
    margin-top: 6px;
}
main .search .btn-clear{
    display: none;
}
main .search-none{
    display: none;
    margin-top: 40px;
    text-align: center;
}
main .search-none.opened{
    display: block;
}
main .search-none strong{
    display: block;
    margin: 10px 0px 7px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: rgb(72, 77, 89);
}
main .search-none span{
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: rgb(106, 116, 134);
}
main .search-results{
    display: none;
}
main .search-results.opened{
    margin-top: 32px;
    display: block;
}
main .search-results-total{
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 500;
    line-height: 16px;
    color: rgb(106, 116, 134);
    text-transform: uppercase;
}
main .search-results.opened .search-results-total{
    margin-left: 16px;
}

main section{
    margin-bottom: 16px;
    border: 1px solid rgb(239, 240, 242);
    border-radius: 16px;
    min-height: 74px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 8px;
}
main section header{
    display: flex;
    align-items: flex-start;
    padding: 23px 24px 0px;
    cursor: pointer;
}
main section header button{
    border: 0px;
    padding: 0px;
    background: none;
}
main section header span:first-child{
    white-space: pre-wrap;
    word-break: break-word;
    margin: 0px;
    padding: 0px;
    color: rgb(72, 77, 89);
    font-weight: 500;
    font-size: 16px;
    flex-grow: 1;
}
main section header span{
    flex-grow: 1;
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
main section header span.opened{
    height: auto
}
main section header span.badge{
    white-space: pre-wrap;
    overflow: unset;
    margin: 0px 16px;
    padding: 0px;
    width: 100px;
    height: auto;
    color: rgb(75, 83, 152);
    font-weight: 600;
    font-size: 16px;
    text-align: right;
}
main section header button{
    position: relative;
    margin-top: 1px;
    cursor: pointer;
    outline: 0;
    transform-origin: 12px 12px;
    transition: transform .5s;
}
main section header button.active{
    transform: rotate(-180deg);
}
main section .customer{
    padding: 10px 8px 24px;
    opacity: 1;
    height: 0px;
    overflow-y: hidden;
    transition: height .3s cubic-bezier(0.26, 0.53, 0.47, 1.27), opacity .3s .25s;
}
main section .customer.closed{
    overflow-y: hidden;
    padding: 0px;
    height: 0px;
    opacity: 0;
    transition: height .3s cubic-bezier(0.41,-0.3, 0.83, 0.73) .25s, opacity .3s, padding 0s .3s;
}
main section .customer > a, main .search-results-links > a{
    position: relative;
    display: flex;
    align-items: center;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    padding: 18px 16px;
    height: 60px;
    -webkit-box-pack: justify;
    justify-content: space-between;
    min-width: 360px;
    transition: all 0.3s ease 0s;
    cursor: pointer;
}
main section .customer > a:hover, main .search-results-links > a:hover{
    background-color: rgb(239, 240, 242);
    transition: all 0.3s ease 0s;
}
main section .customer > a .avatar, main .search-results-links > a .avatar{
    margin-right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ccc;
    font-size: 14px;
    font-weight: bold;
    line-height: 32px;
    text-align: center;
    color: rgb(106, 116, 134);
    background-color: rgb(239, 240, 242);
}
main section .customer > a .name, main .search-results-links > a .name{
    flex-grow: 1;
    color: rgb(106, 116, 134);
    font-weight: 400;
    font-size: 16px;
    white-space: nowrap;
}
main section .customer > a svg, main .search-results-links > a svg{
    transform: rotate(-90deg);
}
main section .customer button, main .search-results button{
    margin-top: 24px;
    margin-left: calc(50% - 146px);
    width: 292px;
    height: 40px;
    border: 1px solid transparent !important;
    border-radius: 8px;
    background-color: transparent;
    font-size: 14px;
    color: #20c97a;
    font-weight: 500;
    cursor: pointer;
    outline: 0;
    transition: background-color .3s, border .3s;
}
main section .customer button:not([disabled]):hover, main .search-results button:not([disabled]):hover{
    background-color: rgb(229, 247, 237);
    border-color: rgb(229, 247, 237);
}
main section .customer button:disabled, main .search-results button:disabled{
    border: 1px solid rgb(215, 218, 224) !important;
    color: rgb(141, 149, 167);
    cursor: not-allowed;
    background: rgb(215, 218, 224) !important;
}
main .customer .customer-tag-done{    
    position: absolute;
    top: 45px;
    left: 65px;
    padding: 4px 8px;
    height: 24px;
    border-radius: 4px;
    background-color: rgb(229, 247, 237);
    color: rgb(0, 189, 106);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}
main .customer .customer-tag-done span{
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: rgb(0, 189, 106);
    border-radius: 3px;
    margin-right: 4px;
}

main .profile{
    display: flex;
    flex-direction: column;
    padding: 24px 0;
}
main .profile > div{
    margin-bottom: 32px;
    max-width: 513px;
}
main .profile > div.bordered{
    border-bottom: 2px solid rgb(239, 240, 242) !important;
    padding-bottom: 23px;
}
main .profile h2{
    white-space: pre-wrap;
    word-break: break-word;
    margin: 0px;
    padding: 0px;
    color: rgb(72, 77, 89);
    font-size: 22px;
    line-height: 32px;
}
main .profile h3{
    margin-bottom: 4px !important;
    white-space: pre-wrap;
    word-break: break-word;
    margin: 0px;
    padding: 0px;
    color: rgb(54, 75, 116);
    font-size: 16px;
    line-height: 24px;
}
main .profile .profile-info{
    margin: 0;
}
main .profile .profile-info span{
    display: block;
    margin: 0px;
    padding: 0px;
    color: rgb(106, 116, 134);
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
}
main .profile .profile-info span strong{
    font-weight: 500;
}
main .profile .profile-info span.subtitle{
    display: block;
    margin: 8px 0px 2px;
    color: rgb(141, 149, 167);
    font-weight: 600;
    font-size: 10px;
    line-height: 16px;
}
main .profile .profile-info button{
    margin-top: 16px;
    display: block;
    width: 100%;
    outline: none;
    border: 1px solid rgb(75, 83, 152);
    border-radius: 8px;
    padding: 0px 24px;
    height: 40px;
    background: rgb(255, 255, 255);
    transition: background-color 0.1s ease-in-out 0s;
    cursor: pointer;
    font-size: 14px;
    color: rgb(75, 83, 152);
    font-weight: 500;
}
main .profile .profile-info button:hover{
    border-color: rgb(75, 83, 152);
    background-color: rgb(232, 234, 242);
}
main .profile .profile-list{
    display: flex;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin-top: 24px;
    gap: 23px;
}
main .profile .profile-list > div{
    display: flex;
    width: 244px;
}
main .profile .profile-list > div span{
    display: block;
    margin-top: 1px;
    color: rgb(106, 116, 134);
    font-weight: 500;
}
main .profile .profile-list > div strong{
    color: rgb(75, 83, 152);
    font-weight: 600;
}
main .profile .profile-list > div > div:first-child{
    margin-right: 16px;
}
main .profile .history-contact-item{
    margin-top: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgb(239, 240, 242);
}
main .profile .history-contact-item.closed{
    display: none;
}
main .profile .history-contact-item.noborder{
    padding-bottom: 0;
    border-bottom: 0;
}
main .profile .history-contact-title{
    display: block;
    margin-bottom: 4px;
    padding: 0px;
    color: rgb(106, 116, 134);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}
main .profile .history-contact-btn{
    margin-top: 24px;
    border: 0;
    padding: 0px;
    background-color: transparent;
    color: rgb(0, 189, 106);
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    cursor: pointer;
}

main .profile .history-products{
    margin-top: 16px;
}
main .profile .history-products h4{
    margin-bottom: 2px;
}
main .profile .history-products h5{
    margin-top: 20px;
    color: rgb(106, 116, 134);
    font-size: 12px;
    line-height: 18px;
}
main .profile .history-products > div{
    margin-top: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
main .profile .history-products > div > div:first-child{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 4px;
    background: rgb(239, 240, 242);
}
main .profile .history-products .profile-info strong{
    color: rgb(75, 83, 152);
    font-weight: 600;
}

main .profile .history-tran{
    margin-top: 16px;
}
main .profile .history-tran h4{
    color: rgb(141, 149, 167)
}
main .profile .history-tran h4 strong{
    color: rgb(75, 83, 152); font-weight: 600;
}
main .profile .history-tran h4 b{
    color: rgb(106, 116, 134); font-weight: 500;
}
main .profile .history-tran > div{
    display: flex;
    flex-direction: row;
}
main .profile .history-tran > div > div:first-child{
    position: relative;
    margin-right: 16px;
    width: 24px;
    text-align: center;
}
main .profile .history-tran > div > div:last-child{
    margin-top: 16px;
    flex-grow: 1;
}
main .profile .history-tran .history-tran-dot{
    top: 24px;
    left: calc(50% - 4px);
    position: absolute;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: rgb(215, 218, 224);
}
main .profile .history-tran .history-tran-line{
    top: 32px;
    left: calc(50% - 1px);
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: rgb(239, 240, 242);
}
main .profile .history-tran:last-child .history-tran-line{
    display: none;
}
main .profile .history-tran .history-tran-btn{
    float: right;
    cursor: pointer;
    transform-origin: 12px 12px;
    transition: transform .3s;
}
main .profile .history-tran .history-tran-btn[data-state="opened"]{
    transform: rotate(180deg);
}
main .profile .history-tran .profile-info{
    margin-top: 8px;
    padding: 16px;
    border: 1px solid rgb(239, 240, 242);
    border-radius: 8px;
}
main .profile .history-tran .history-tran-item{
    color: rgb(106, 116, 134);
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
}
main .profile .history-tran .history-tran-info{
    display: none;
}
main .profile-actions{
    position: fixed;
    top: 88px;
    right: calc(50% - 525px);
    display: flex;
    flex-direction: column;
    width: 268px;
    padding: 16px;
    border: 1px solid rgb(239, 240, 242);
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 8px;
    background-color: rgb(255, 255, 255);
    z-index: 1;
}
main .profile-actions > p{
    display: block;
    margin-bottom: 16px;
    color: rgb(72, 77, 89);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}
main .profile-actions > button{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 8px;
    border: 1px solid rgb(0, 189, 106);
    border-radius: 8px;
    background-color: transparent;
    height: 40px;
    font-size: 14px;
    color: rgb(0, 189, 106);
    font-weight: 500;
    cursor: pointer;
    transition: background-color .3s;
}
main .profile-actions > button:hover{
    background-color: rgb(229, 247, 237);
}
main .profile-actions > button:last-child:hover{
    background-color: rgb(228, 10, 10);
    color: #fff;
}
main .profile-actions > button:last-child:hover path{
    fill: #fff;
}
main .profile-actions > button:last-child path{
    fill: rgb(228, 10, 10)
}
main .profile-actions > button svg path{
    fill: rgb(0, 189, 106);
}
main .profile-actions > button:last-child{
    margin: 0;
    border: 1px solid rgb(228, 10, 10) !important;
    color: rgb(228, 10, 10);
}
main .profile-actions > button span:first-child{
    padding: 6px 0px 0px 10px;
}
main .profile-actions > button span:last-child{
    flex-grow: 1;
    text-align: center;
}

.profile-modal, .report-modal, .modal-logout{
    top: 0px;
    height: 100%;
    z-index: 100;
}
.profile-modal .body, .report-modal .body{
    border-radius: 16px 0px 0px 16px;
    padding: 16px;
    width: 384px;
}
.profile-modal header, .report-modal header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 16px;
    border-bottom: 1px solid rgb(239, 240, 242);
    padding-bottom: 16px;
    color: rgb(106, 116, 134);
    font-weight: 400;
    font-size: 14px;
}
.profile-modal header h2, .report-modal header h2{
    margin: 3px 0 3px;
    font-size: 22px;
    color: rgb(54, 75, 116);
    line-height: 120%;
}
.profile-modal header button, .report-modal header button{
    margin: 14px 6px 0 0 ;
    border: 0;
    width: 24px;
    height: 24px;
    background-color: transparent;
    cursor: pointer;
}
.profile-modal article{
    display: none;
}
.profile-modal .profile-modal-notes textarea, .suggestion textarea{
    display: block;
    margin-bottom: 16px;
    padding: 10px 16px 16px;
    border: 1px solid rgb(215, 218, 224);
    width: 100%;
    min-height: 138px;
    font-weight: 500;
    border-radius: 8px;    
    color: rgb(54, 75, 116);
    font-size: 14px;
    outline: none;
    transition: border 0.3s, height 0s;
}
.profile-modal .profile-modal-notes textarea:focus, .suggestion textarea:focus{
    border-color: rgb(75, 83, 152);
}
.profile-modal article button, .suggestion button, .search-form button{
    border: 1px solid rgb(0, 189, 106);
    border-radius: 8px;
    background-color: rgb(0, 189, 106);
    height: 40px;
    width: 100%;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: background-color .3s;
}
.profile-modal article button:not([disabled]):hover, .suggestion button:not([disabled]):hover, .search-form button:not([disabled]):hover{
    background-color: rgb(0, 106, 49);
}
.profile-modal article button[disabled], .suggestion button[disabled], .search-form button[disabled]{
    border-color: rgb(215, 218, 224) !important;
    background: rgb(215, 218, 224) !important;
    color: rgb(141, 149, 167);
    cursor: not-allowed;
}
.profile-modal .profile-modal-remove button{
    margin-bottom: 8px;
    border: 1px solid rgb(0, 189, 106);
    background-color: transparent;
    color: rgb(0, 189, 106);
}
.profile-modal .profile-modal-remove button.cancel{
    border-color: transparent;
}
.profile-modal .profile-modal-remove button:not([disabled]):hover{
    background-color: rgb(229, 247, 237);    
}
.profile-modal-call > div, .profile-modal-whatsapp > div, .profile-modal-sms > div{
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    border-radius: 16px;
    border: 1px solid rgb(239, 240, 242);
    padding: 16px 16px 24px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 8px;
}
.profile-modal-call > div p, .profile-modal-whatsapp > div p, .profile-modal-sms > div p{
    white-space: pre-wrap;
    word-break: break-word;
    margin: 0 0 16px 0;
    padding: 0px;
    height: 108px;
    color: rgb(106, 116, 134);
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    overflow: hidden;
}
.profile-modal-call > div p.opened, .profile-modal-whatsapp > div p.opened, .profile-modal-sms > div p.opened{
    height: auto;
}
.profile-modal-call > div h3, .profile-modal-whatsapp > div h3, .profile-modal-sms > div h3{
    color: rgb(75, 83, 152);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
}
.profile-modal-call > div h6, .profile-modal-whatsapp > div h6, .profile-modal-sms > div h6{
    margin: 9px 0 4px 0;
    color: rgb(141, 149, 167);
    font-weight: 500;
    font-size: 10px;
    line-height: 16px;
}
.profile-modal-call > div .see-all, .profile-modal-whatsapp > div .see-all, .profile-modal-sms > div .see-all{
    float: right;
    color: rgb(0, 189, 106);
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
}
.profile-modal-confirm div{
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}
.profile-modal-confirm button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}
.profile-modal-confirm .profile-modal-confirm-ok path{
    fill: rgb(0, 189, 106);
    stroke: rgb(255, 255, 255);
}
.profile-modal-confirm .profile-modal-confirm-ok:hover path{
    fill: #fff    
}
.profile-modal-confirm .profile-modal-confirm-no{
    background-color: #fff;
    color: rgb(0, 189, 106);
}
.profile-modal-confirm .profile-modal-confirm-no:hover{    
    background-color: rgb(229, 247, 237) !important;
}
.profile-modal-confirm .profile-modal-confirm-no path{
    fill: rgb(255, 255, 255);
    stroke: rgb(0, 189, 106);
}
.profile-modal-confirm .profile-modal-confirm-no:hover path{
    fill: rgb(229, 247, 237) !important;
}
.profile-modal-confirm .profile-modal-confirm-del{
    border-color: rgb(228, 10, 10);
    background-color: #fff;
    color: rgb(228, 10, 10);
}
.profile-modal-confirm .profile-modal-confirm-del:hover{
    background-color: rgb(228, 10, 10) !important;
    color: #fff !important;
}
.profile-modal-confirm .profile-modal-confirm-del path{
    fill: rgb(228, 10, 10);    
}
.profile-modal-confirm .profile-modal-confirm-del:hover path{
    fill: #fff
}

.search-form > div{
    margin-bottom: 16px;
    display: flex;
}
.search-form > div > div{
    flex-grow: 1;
}
.search-form > div > div label{
    color: rgb(139, 147, 167);
    font-weight: 500;
}
.search-form input[type="radio"]{
    display: none;
}
.search-form .search-form-radio{
    float: left;
    margin: 2px 4px 0 0;
    border-radius: 50%;
    border: 2px solid rgb(141, 149, 167);
    padding: 2px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.search-form .search-form-radio.checked{
    border-color: rgb(0, 189, 106);
}
.search-form .search-form-radio div{
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background-color: #fff
}
.search-form .search-form-radio div:hover{
    background-color: rgb(229, 247, 237);
}
.search-form .search-form-radio.checked div{
    background-color: rgb(0, 189, 106);
}
.search-form input[type="text"]{
    margin-bottom: 16px;
    height: 40px;
    border: 1px solid rgb(215, 218, 224);
    background: rgb(255, 255, 255);
    border-radius: 8px;
    color: rgb(54, 75, 116);
    outline: none;
    padding: 0px 16px;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    transition: border 0.3s;
}
.search-form input[type="text"]:focus{
    border: 1px solid rgb(75, 83, 152);
}

main .report-h1{
    margin: 16px 0 16px;
}
main .report-input-date, main .report-input-date-from, main .report-input-date-to{
    display: flex;
    align-items: center;
    margin: 20px 0 16px;
    border: 1px solid rgb(215, 218, 224);
    border-radius: 8px;
    padding: 8px;
    height: 40px;
}
main .report-input-date input, main .report-input-date-from input, main .report-input-date-to input{
    margin: 0 8px;
    border: 0;
    flex-grow: 1;
    outline: none;
    color: rgb(139, 147, 167);
    font-weight: 500;
}
main .report-input-dates{
    position: relative;
    margin: 0 0 16px !important;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}
main .report-input-dates > div{
    margin: 0;
    transition: border .3s;
}
main .report-input-dates > div input{
    width: 100%;
}
main .report-input-dates > div.active{
    border-color: #4B5398;
}
main .report-info, main .report-info-white{
    position: relative;
    margin-bottom: 16px;
    border-radius: 8px;
    padding: 18px 20px;
    height: auto;
    background: rgb(54, 75, 116);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}
main .report-info strong, main .report-info-white strong{
    margin-top: 8px;
    display: block;
    font-weight: 600;
    font-size: 30px;
    line-height: 48px;
}
main .report-info-white{
    border: 1px solid rgb(215, 218, 224);
    background-color: transparent;
    color: rgb(54, 75, 116);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 8px;
}
main .report-tag{
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    height: 24px;
    padding: 0px 8px 0px 4px;
    border-radius: 4px;
    border: 1px solid rgb(215, 218, 224);
    background-color: rgb(255, 255, 255);
    font-size: 10px;
    font-weight: 500;
    color: #8d95a7;
    text-transform: uppercase;
}
main .report-tag svg{
    width: 16px;
    height: 16px;
}
main .report-tag.orange{
    color: rgb(227, 156, 41);
}
main .report-tag.orange path{
    fill: rgb(227, 156, 41);
}
main .report-tag.red{
    color: rgb(228, 10, 10);
}
main .report-tag.red path{
    fill: rgb(228, 10, 10);
}
main .report-tag.green{
    color: #00bd6a;
}
main .report-tag.green path{
    fill: #00bd6a;
}
main .report-bar{
    margin: 16px 0 10px;
    border-radius: 4px;
    height: 8px;
    background-color: #f5f5f5;
}
main .report-bar span{
    display: block;
    border-radius: 4px;
    height: 100%;
    width: 1px;
    background-color: rgb(24, 144, 255);
}
main .report-bar-info{
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 16px;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
}
main .report-bar-info span:last-child{
    color: rgb(141, 149, 167);
}
main .report-contacts{
    display: flex;
    justify-content: space-evenly;
    margin: 0;
    padding: 0;
}
main .report-contacts li{
    flex-grow: 1;
    list-style: none;
    color: rgb(141, 149, 167);
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}
main .report-contacts li span{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 5px;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    background-color: rgb(141, 149, 167);
}
main .report-contacts li strong{
    margin-top: 0;
    color: rgb(54, 75, 116);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}
main .report-btn{
    margin-bottom: 16px;
    border: 1px solid rgb(0, 189, 106);
    background-color: rgb(0, 189, 106);
    border-radius: 8px;
    height: 40px;
    width: 100%;
    color: #fff; 
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: border .3s, background-color .3s;   
}
main .report-btn:hover{
    border-color: rgb(0, 106, 49);
    background-color: rgb(0, 106, 49);
}
main .report-table{
    margin-top: 8px;
    width: 100%;
    border-collapse: collapse;
}
main .report-table th{
    color: rgb(54, 75, 116);
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
}
main .report-table tbody tr{
    border: 1px solid rgb(215, 218, 224);
    border-radius: 8px;
}
main .report-table td{
    padding: 8px;
    width: 25%;
    text-align: center;
    color: rgb(54, 75, 116);
    font-size: 12px;
    font-weight: 500;
}
main .report-table td:first-child{
    font-weight: 400;
}
.report-modal article h2{
    margin: 0 0 8px;
    color: rgb(72, 77, 89);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}
.report-modal article > div{
    margin-bottom: 8px;
}
.report-modal .report-modal-period{
    margin-bottom: 16px;
}
.report-modal .report-modal-period button{
    margin: 0 4px 8px 0;
    border-radius: 30px;
    border: 1px solid rgb(215, 218, 224);
    padding: 0px 16px;
    background-color: #fff;
    height: 32px;
    cursor: pointer;
    transition: background-color .3s, border .3s;
}
.report-modal .report-modal-period button:hover, .report-modal .report-modal-period button.active{
    background-color: rgb(75, 83, 152);
    border: 1px solid rgb(75, 83, 152);
    color: #fff;
}
.report-modal .report-input-compare button{
    border: 0;
    border-radius: 12px;
    padding: 2px;
    height: 24px;
    width: 40px;
    background-color: rgb(215, 218, 224);
    outline: none;
    cursor: pointer;
    transition: background-color .15s;
}
.report-modal .report-input-compare button span{
    display: block;
    border-radius: 10px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    transform: translateX(0px);
    transition: transform .3s ease-in-out
}
.report-modal .report-input-compare button.active{
    background-color: rgb(0, 189, 106);
}
.report-modal .report-input-compare button.active span{
    transform: translateX(16px);
}
.report-modal .report-form-btns{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 8px
}
.report-modal .report-form-btns button{
    flex-grow: 1;
    border: 1px solid rgb(0, 189, 106);
    border-radius: 8px;
    height: 40px;
    background-color: #fff;
    font-weight: 600;
    color: rgb(0, 189, 106);
    transition: background-color .3s;
    cursor: pointer;
}
.report-modal .report-form-btns button:hover{
    background-color: rgb(229, 247, 237);
}
.report-modal .report-form-btns button:last-child{
    background-color: rgb(0, 189, 106);
    color: #fff;
}
.report-modal .report-form-btns button:last-child:hover{
    border-color: rgb(0, 106, 49);
    background-color: rgb(0, 106, 49);
}
.report-calendar{
    position: absolute;
    top: 46px;
    left: 0px;
    display: none;
    border-radius: 8px;
    border: 1px solid rgb(215, 218, 224);
    padding: 8px;
    width: 100%;
    min-height: 200px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 8px;
    z-index: 101;
    opacity: 0;
    transform: translateY(20px);
    animation: appearAnimation .100s ease-in-out forwards;
}
@keyframes appearAnimation {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
.report-calendar table{
    width: 100%;
    border-collapse: collapse;
}
.report-calendar table th{
    width: calc(100% / 7);
    font-size: 12px;
}
.report-calendar table td{
    height: 30px;
    text-align: center;
    font-size: 12px;
    transition: background-color .3s, color .3s;
    cursor: pointer;
}
.report-calendar table td.today{
    background-color: rgb(215, 218, 224);
}
.report-calendar table td.disabled{
    color: rgb(215, 218, 224) !important;
}
.report-calendar table td.disabled.today, .report-calendar table td.disabled.active{
    color: #fff !important;
}
.report-calendar table td:not(.empty):hover, .report-calendar table td.active{
    background-color: rgb(75, 83, 152);
    color: #fff
}

.calendar-btns{
    margin-bottom: 8px;
    display: flex;
    gap: 4px
}
.calendar-btns > div{
    flex-grow: 1;
}
.calendar-btns > select{
    border: 0;
    outline: none;
}
.calendar-btns > button{
    border: 0;
    background-color: #fff;
    cursor: pointer;
    outline: none;
}
.calendar-btns > button.down svg{
    transform: rotate(180deg);
}

.modal-logout{
    padding: 8px;
    background-color: rgba(0, 0, 0, 0.3);
}
.modal-logout > div{    
    border-radius: 8px;
    border: none;
    padding: 20px;
    margin: 0 auto;
    margin-top: 92px;
    min-height: 194px;
    max-width: 520px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 8px;
    transition: all .2s ease-in-out
}
.modal-logout.closed > div{
    transform: translateY(80%) translateX(100%) scale(.15);
    opacity: 0;
}
.modal-logout .modal-logout-close{
    float: right;
    margin-top: -2px;
    border: 0;
    width: 25px;
    height: 25px;
    background-color: transparent;
    cursor: pointer;
}
.modal-logout .modal-logout-title{
    display: block;
    margin: 14px 0px 1px;
    color: rgb(75, 83, 152);
    font-weight: 500;
    font-size: 22px;    
}
.modal-logout .modal-logout-text{
    display: block;
    color: rgb(141, 149, 167);
    margin-bottom: 32px;
    font-weight: 600;
}
.modal-logout .modal-logout-btns{
    text-align: right;
}
.modal-logout .modal-logout-btns button{
    display: inline-block;
    border: 1px solid rgb(0, 189, 106);
    border-radius: 8px;
    width: 120px;
    height: 50px;
    background: rgb(0, 189, 106);
    color: #fff;
    cursor: pointer;
    transition: background-color .3s;
}
.modal-logout .modal-logout-btns button:hover{
    border-color: rgb(0, 106, 49);
    background-color: rgb(0, 106, 49);
}
.modal-logout .modal-logout-btns button:first-child{
    border-color: #fff;
    background-color: #fff;
    color: #20c97a;
}
.modal-logout .modal-logout-btns button:first-child:hover{
    border-color: rgb(229, 247, 237);
    background-color: rgb(229, 247, 237);
}

.note{
    display: flex;
    align-items: center;
    border-radius: 8px;
    border: 0px;
    padding: 8px 16px;
    background-color: rgb(251, 241, 224);
}
.note svg path{
    fill: rgb(196, 77, 2);
}
.note span svg{
    margin-top: 5px;
}
.note span.note-text{
    margin-left: 8px;
    color: rgb(196, 77, 2);
    font-weight: 500;
    font-size: 14px;
}

@media (max-width: 950px) {
    body > header > div{
        padding: 0 16px;
    }
    body.login .login-logo svg{
        width: 180px;
        height: 54px;
    } 
    body.login main > div{
        height: 60%;
    }
    body.login main > div:first-child{
        height: 40%;
    }
    body.login h1{
        margin-bottom: 20px !important;
    }
    body.login main > div:last-child{
        width: calc(100% - 32px);
    }
    body.login form > div, body.login form{
        width: 100% !important;
        height: 98.5% !important;
    }
    body.login .login-submit{
        margin-top: 6.0vh !important;
    }
    body.login .login-warn{
        bottom: 16px;
    }
    main{
        padding: 64px 16px 100px;
    }
    main h1{
        margin-top: 16px;
    }
    main .info{
        margin: 16px 0;
        height: 54px;
    }
    main .info svg{
        margin: 0 10px 0px 16px;
    }
    main .info span{
        font-size: 14px;
    }
    main section .customer > a, main .search-results-links > a{
        min-width: auto;
    }
    main section .customer button, main .search-results button{
        margin-left: calc(50% - 100px);
        width: 200px;
    }
    main .profile h2{
        font-size: 16px;
        line-height: 24px;
    }
    main .profile-actions{
        flex-direction: row;
        top: auto;
        bottom: 28px !important;
        right: calc(50% - 144px);
        padding: 7px 16px;
        width: auto;
    }
    main .profile-actions button span{
        padding: 5px 0 0 0 !important;
    }
    main .profile-actions button{
        margin: 0 14px !important;
        border: 0 !important;
    }
    main .profile-actions button span:last-child, main .profile-actions p{
        display: none;
    }
    main .profile-actions > button:last-child{
        border: 0 !important;
    }
    main .report-table td{
        width: calc(70% / 3)
    }
    main .report-table td:nth-child(2){
        width: 30%;
    }
    .profile-modal .body, .report-modal .body{
        width: 100%;
    }
    .modal-logout.closed > div{
        transform: translateY(80%) translateX(0) scale(.15);
    }
}