
:root {
    --global-color: #5a8f6e;
    --sub-color: #e6edeb;
}




body {
    overflow: hidden;
}


.logo-block {
    margin-top: 100px;
    text-align: center;
}


.logo img {
    width: 300px;
}

.name h3 {
    color: #68898d;
}

.regLogin {
    margin: 0 auto;
    width: 300px;
}

#loginIN {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.loginBlock {
    position: relative;
}

.errorLogin {
    position: absolute;
    top: -37px;
    right: -142px;
    background-color: #1b201e;
    color: white;
    padding: 7px;
    border-radius: 4px;
}

.errorLogin::before {
    content: '';
    position: absolute;
    border: 10px solid transparent;
    border-top: 20px solid #1b201e;
    top: 32px;
    left: 11px;
}


.loginBlock label , .passBlock label {
    position: absolute;
    margin: -13px 0px 0px 15px;
    font-family: cursive;
    color: #2c8b7d;
}




.inputs {
    font-size: 20px;
    outline: 0 none;
    border: none;
    background-color: #d8efea;
    padding: 10px 5px 5px 10px;
    width: 300px;
    color: #517a7a;
    border-radius: 4px;
}

.inputs:focus {
    border: 1px solid #9fb8b0;
}

.passBlock {
    position: relative;
}

.ShowHide {
    position: absolute;
    top: 1px;
    right: 1px;
    font-size: 25px;
    color: cadetblue;
    cursor: pointer;
    box-shadow: inset 0 0 3px 2px #75b596;
    height: 37px;

}

.closeEye {
    position: absolute;
    top: 2px;
    right: 16px;
    font-size: 28px;
    font-weight: bolder;
    display: none;
}


.forButtonsLogReg {
    display: flex;
    justify-content: space-between;
}

.registerGo {
    align-self: center;
    background: #951311;
    padding: 7px;
    border-radius: 3px;
    color: white;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    width: 108px;
    text-align: center;
}

.registerGo:hover {
    background: #a59999;
}

#go {
    font-size: 16px;
    padding: 8px;
    border: none;
    color: white;
    background-color: #2cbb76;
    width: 120px;
    border-radius: 3px;
    cursor: pointer;
}

.recoverPass {
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    margin-top: 30px;
    font-weight: bold;
    color: #636464;
}

.recoverPass:hover {
    color: #85afaf;
}



/*------------------------------------------------*/
.modRegister {}

.modRegister.show .modOverlay,
.modRegister.show .modWindow{
    z-index: 100;
    opacity: 1;
}

.modRegister.hide .modOverlay,
.modRegister.hide .modWindow{
    z-index: 100;
    opacity: 1;
}


.modOverlay , .modWindow {
    z-index: -1;
    opacity: 0;
}


.modOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(166deg, black, #5a686294);
    transition: all .5s;
}

.modWindow {
    width: 500px;
    background: white;
    margin: 0 auto;
    margin-top: 110px;
    height: 550px;
    border-radius: 3px;
    transition: visibility 1s , transform ease-in .8s;
    transform: translateX(1000px);
}


.modRegister.show .modOverlay {
    transition: visibility 1s, opacity 1s;

}


.modRegister.show .modWindow {
    transform: translateX(0px);
}


.modRegister.hide .modOverlay {
    opacity: 0;
    visibility: hidden;
    transition: visibility 1s, opacity 1s 1s;
}


.modRegister.hide .modWindow {
    transform: translateX(1300px);


}



.modHeader {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    font-size: 20px;
    background: #4cab8b;
    color: white;
    font-variant-caps: small-caps;
    height: 30px;
    align-items: center;
    border-radius: 3px;
}


.modHeader span:nth-child(2){
    cursor: pointer;
}


.regForm {
    padding: 10px;
    display: grid;
    gap: 20px;
    width: 410px;
    margin: 0 auto;
    margin-top: 20px;
}


.emailReg,.telReg,.passReg,.pass2Reg {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.regForm label {
    align-self: center;
    color: #2d8169;
    text-transform: uppercase;
    font-family: monospace;
    font-size: 16px;
    font-weight: bolder;
}

.RegisterInputs {
    font-size: 17px;
    outline: none;
    border: 1px solid #7caf98;
    background-color: #c1e1d6;
    border-radius: 3px;
    height: 30px;
    color: #467861;
    padding: 5px;
    font-weight: 200;
    box-shadow: 0 0 6px 2px #314638;
}

.RegisterInputs:focus {
    border: 2px solid #3f8364;
}



.buttReg {
    margin-top: 10px;
}

#buttReg {
    font-size: 17px;
    border: none;
    padding: 7px;
    background-color: #18956f;
    color: white;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow:hidden;
    z-index:1;
    transition: all .7s;
}


#buttReg::before
{
    content: '';
    position: absolute;
    width:100%;
    height:100%;
    z-index: -1;
    background-color: white;
    top:0;
    left:0;
    transform: translateX(-100%);
    transition: all .7s;
}

#buttReg:hover::before {
    transform: translateX(0);
}

#buttReg:hover {
    border: 1px solid;
    color:#18956f;
}


/*------------------------------------------------*/


.errorMod {
    position: absolute;
    top: -45px;
    right: -225px;
    background-color: #978f8f;
    display: flex;
    padding: 8px;
    justify-content: space-between;
    width: 300px;
    gap: 20px;
    border-radius: 5px 5px 5px 5px;
    color: white;
    transition: all 1s;
}

.errorMod.autoCLoseErr , .errorProf.autoCLoseErr , .errorPay.autoCLoseErr {
    opacity: 0;
    transition: visibility 1s, opacity 1s 2s;
}



.errorMod::before {
    content: '';
    position: absolute;
    border: 10px solid transparent;
    border-top: 20px solid #978f8f;
    top: 33px;
    left: 11px;

}

.errText {
    align-self: center;
}

.closeErr {
    cursor: pointer;
    align-self: center;
}


/*-------------------------------------------------*/

.modFooter {
    padding: 5px;
    margin: 0 auto;
    margin-top: 20px;
    width: 90%;
    height: 160px;
    border-radius: 4px;
    box-shadow: 0 0 5px 4px #083828;
    display: none;
}


.confirmRegister {
    text-align: center;
    margin-top: 15px;
    display: grid;
    gap: 10px;
}

.informationConfirm {
    font-family: math;
    color: #2d8169;
    font-size: 16px;
}

.reConfirmInfo {
    display: flex;
    justify-content: space-evenly;
    margin-top: 10px;
}

.infoRe {
    font-family: math;
    color: #2d8169;
    font-size: 17px;
    align-self: center;
}

#reConfirm {
    border: none;
    font-size: 18px;
    height: 30px;
    width: 105px;
    background-color: #18956f;
    color: white;
    border-radius: 3px;
    cursor: pointer;
    transition: all 1s;
}

#reConfirm:hover {
    background-color: #8a9b96;
}


.modalOk {
    position: absolute;
    top: 200px;
    left: 24px;
    background-color: white;
    width: 90%;
    z-index: 1000;
    opacity: 2;
    height: 150px;
    margin: 0 auto;
    box-shadow: 0 0 16px 20px #2d9155;
    transition: visibility 1s, opacity 1s;
    display: none;

}

.infoOk {
    text-align: center;
    margin: 50px;
    font-size: larger;


}

.imgOk {
    width: 10%;
    align-self: center;
    margin-right: 31px;
}

.imgOk img {
    width: 35px;
}




/****************RECOVER************************/

.recoverBlock {
    width: 420px;
    margin: 0 auto;
    margin-top: 100px;
}

.recoverBlock h3 {
    text-align: center;
}


.recoverBlock form fieldset {
    display: grid;
    gap: 10px;
    padding: 15px;
    border-radius: 4px;
}

.recoverBlock form fieldset label {
    font-family: sans-serif;
}

.greenButtons {
    font-size: 16px;
    padding: 8px;
    border: none;
    color: white;
    background-color: #2cbb76;
    width: 120px;
    border-radius: 3px;
    cursor: pointer;
}

.greenButtons:active {
    box-shadow: inset 0 0 10px 4px #426647;
}

.msgOut {
    text-align: center;
    line-height: 1.5em;
}

.newpass {
    margin: 0 auto;
    width: 420px;
    margin-top: 150px;
}

.newpassInputsDiv {
    display: grid;
    gap: 25px;
}

.onePass {
    display: flex;
    justify-content: space-between;
}


.onePass label {
    font-variant: petite-caps;
    align-self: center;
}


.onePass:nth-child(3) {
    justify-content: flex-end;
}

.newpass h3 {
    text-align: center;
    font-family: sans-serif;
    color: #414e47;
}


.rememberPass {
    cursor: pointer;
    text-decoration: underline;
    font-size: larger;
    margin: 0px;
}

.rememberPass:hover {
    color: red;
}




/****************Личный кабинет******************/


.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5
;
}

.insideHeaderContainer {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: #35403c;
}

.logoHead {
    margin-left: 20px;
}

.logoHead a img {
    width: 195px;
}

.topHeadMenu {
    display: flex;
    gap: 15px;
    align-self: center;

}

.balanceUserBlock {
    display: flex;
    gap: 7px;
    align-self: center;
}

.infoBalance {
    color: cornsilk;
}

.balance {
    color: white;
    font-weight: bolder;
}

.upBalance {
    color: #ffe03a;
    font-weight: 900;
    margin-left: 10px;
    cursor: pointer;
}

.upBalance:hover {
    color: #bfaa3a;
    text-decoration: underline;
}

.nameUser {
    display: flex;
    gap: 10px;
    margin-right: 50px;
    align-self: center;
    color: white;
    cursor: pointer;
    height: 25px;
    width: 80px;
    border-radius: 5px;
}


.nameUser p:nth-child(1) {
    align-self: center;
    margin-left: 4px;
}

.nameUser p:nth-child(2) {
    align-self: center;
    color: #1fb71f;
}


.subMenu.activeSubMenu{
    opacity: 1;
    z-index: 10;
    display: grid;
}



.subMenu {
    opacity: 0;
    z-index: -1;
    display: none;
}

.subMenu {
    position: absolute;
    top: 68px;
    right: 31px;
    background-color: white;
    border: 1px solid;
    border-radius: 4px;
    width: 130px;
    min-height: 50px;
    transition: all .3s;

}

.ExitSubMenu {
    text-align: center;
    align-self: center;
}

.ExitSubMenu:hover {
    background-color: #d3f1e4;
    padding: 3px;


}


.ExitSubMenu a {
    text-decoration: none;
    color: black;
    font-weight: 700;

}



/************SIDEBAR***********************/

.sidebar {
    position: absolute;
    border: 1px solid;
    border-radius: 4px;
    width: 250px;
    height: 100%;
    background: #f9f9f9;
    top: 77px;
    left: 0;
    z-index: 1;
}


/***********************CONTENT**************************/

.billingContent {
    position: fixed;
    top: 77px;
    left: 252px;
    width: 86.7%;
    height: auto;
    z-index: 1;
}

.sidebarLine {
    padding: 10px;
    margin-top: 20px;
}


.itemLineSidebar {
    margin-bottom: 10px;
}

.infoSidebarLine {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    padding: 5px;
    font-size: 17px;
    font-weight: 600;
    color: #61816e;
}

.infoSidebarLine:hover {
    background-color: #ebebeb;
}

.rightSidebarName {
    display: flex;
    gap: 7px;
}


.iconSidebarLineLeft .settings {
    animation: 5s linear infinite settings;
}

@keyframes settings {

    10%{transform: rotate(360deg);}
    20%{transform: rotate(36deg);}
    30%{transform: rotate(72deg);}
    40%{transform: rotate(108deg);}
    50%{transform: rotate(144deg);}
    60%{transform: rotate(180deg);}
    70%{transform: rotate(216deg);}
    80%{transform: rotate(252deg);}
    90%{transform: rotate(288deg);}
    100%{transform: rotate(324deg);}

}

.iconSidebarLineRight i {
    color: #61816e;
}

.iconSidebarLineRight {

}

.iconSidebarLineRight i {
    color: #61816e;
    transition: all .5s;
}

.navSidebar {
    list-style-type: none;
    display: grid;
    gap: 6px;
    cursor: pointer;
    margin: 5px 0 5px 0px;

}

.navSidebar li {
    font-family: initial;
    color: #4f705f;
    padding: 3px;
    margin: 0 0 0 -25px;
}


.navSidebar li:hover {
  background-color: #e9efed;
}

.itemsSidebar {
    border-left: 3px solid rgb(136, 194, 147);
    margin: 0 0 0 10px;
}

.copyright {
    position: absolute;
    bottom: 100px;
    left: 30px;
    z-index: 4;
}

.copyright a {
    color: #204024;
}

.contentBilling {
    display: none;
}

.nadTop {
    border-bottom: 1px solid #000;
    margin-left: 3px;
}

.namePage {
    width: 185px;
    padding: 4px;
    margin: 0;
    text-align: center;
}

.namePage h4 {
    margin: 0;
    color: #61816e;
    font-size: 18px;
}

.itemsDashboard {
    display: flex;
    gap: 20px;
    padding: 10px;
    margin: 10px 10px 0px 15px;
}

.itemDashboard {
    display: flex;
    gap: 10px;
    cursor: pointer;
    border: 1px solid #61816e;
    padding: 6px;
    border-radius: 4px;
    color: #61816e;
    font-size: 16px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 1s;
}

.itemDashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #5a8f6e;
    transition: all .8s;
    transform: translateX(-100%);
}

.itemDashboard:hover::before {
    transform: translateX(0);
}

.itemDashboard:hover {
    color: white;
}


.namePanelTasks {
    padding: 6px;
    margin-left: 10px;
    margin-top: 10px;
    background: #5a8f6e;
    border-radius: 4px;
    color: white;
    font-size: 17px;
    padding-left: 20px;
    width: 97%;
}

.nameContentInfo , .nameContentOrder  {
    width: 94%;
    padding: 6px;
    margin-left: 10px;
    margin-top: 10px;
    background: #5a8f6e;
    border-radius: 4px;
    color: white;
    font-size: 17px;
    padding-left: 20px;
}

.nameContentHistory {
    width: 94%;
    padding: 6px;
    margin-left: 10px;
    margin-top: 10px;
    background: #5a8f6e;
    border-radius: 4px;
    color: white;
    font-size: 17px;
    padding-left: 20px;
}

.panelOther {
    display: flex;
}

.panelHistoryUser {
    float: right;
    margin: 10px 0px 0 0px;
    width: 50%;
}


.contentInfo , .contentOrder {
    width: 100%
}

.contentHistory {
    width: 100%;
}



.informationDashBoard , .informationOrder , .informationHistory{
    margin: 10px 10px 0px 20px;
    background-color: #e6edeb;
    padding: 25px;
    border-radius: 4px;
    min-width: 94%;
    border-spacing: 0;
    font-family: emoji;
}


.informationOrder tbody tr:nth-child(1) , .informationHistory .oneBody tr:nth-child(1) {
    height: 40px;
    font-family: math;
    color: #577462;
}


.informationDashBoard tbody tr:nth-child(2n+1) , .informationOrder tbody tr:nth-child(2n+2) , .informationHistory .twoBody tr:nth-child(2n+1){
    height: 35px;
    border-radius: 3px;
    background-color: #f4f4f4;
}

.informationDashBoard tbody tr:nth-child(2n+2) , .informationOrder tbody tr:nth-child(2n+3) , .informationHistory .twoBody tr:nth-child(2n+2){
    height: 35px;
    border-radius: 3px;
    background-color: #ffffff;
}

.informationDashBoard tbody tr td {
    width: 60%;
    padding-left: 10px;
}

.informationOrder tbody tr td {
    padding-left: 10px;
}

.informationHistory .oneBody tr td , .informationHistory .twoBody tr td {
    padding-left: 10px;
}


/************************PAGINATION JS*********************************/

.blockPaginationButtons {
    display: flex;
    gap: 10px;
    float: right;
    margin: 10px 35px 0 0;
}

.numPage {
    width: 60px;
    border-radius: 4px;
    appearance: textfield;
    border-color: #5a8f6e;
}


.forward , .back {
    cursor: pointer;
}

.forOverlay {
    height: 830px;
    overflow: auto;
}

/************************PAGINATION JS*********************************/


/****************Общие ошибки полей********************/

.errorProf {
    position: absolute;
    top: 0px;
    right: -323px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    background: #585e5ac7;
    padding: 6px;
    border-radius: 4px;
    color: white;
    width: 300px;
    transition: all 1s;
}


.errorProf::before {
    content: '';
    position: absolute;
    border: 10px solid transparent;
    border-right: 20px solid #585e5ac7;
    top: 6px;
    left: -29px;
}

.closeError {
    cursor: pointer;
}



.errorPay {
    position: absolute;
    top: -37px;
    right: -15px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    background: #585e5ac7;
    padding: 6px;
    border-radius: 4px;
    color: white;
    width: 300px;
    transition: all 1s;
}


.errorPay::before {
    content: '';
    position: absolute;
    border: 10px solid transparent;
    border-top: 20px solid #585e5ac7;
    top: 28px;
    left: 130px;
}

.closeErrorPay {
    cursor: pointer;
}






/****************Общие ошибки полей********************/




/************************ПРОФИЛЬ*********************************/

#formProf {
    display: grid;
    gap: 20px;
    background-color: #e6edeb;
    width: 500px;
    padding: 20px;
    margin-top: 20px;
    margin-left: 10px;
}

.inputProf {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.styleProfInput {
    outline: none;
    font-size: 17px;
    border-radius: 4px;
    border-color: azure;
    font-weight: 300;
    width: 275px;
    height: 30px;
}



.inputProf label {
    font-size: 17px;
    align-self: center;
    font-family: monospace;
}

.nameContentProfile {
    padding: 6px;
    margin-left: 10px;
    margin-top: 10px;
    background: #5a8f6e;
    border-radius: 4px;
    color: white;
    font-size: 17px;
    padding-left: 20px;
    width: 97%;
}

.inputProf button {
    border: none;
    background-color: #5a8f6e;
    color: white;
    height: 29px;
    font-size: 17px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 0 7px 1px #3e4441;
}

.inputProf button:active {
    box-shadow: inset 0 0 7px 1px #3e4441;
}

/*----------------------Плательщики-------------------------*/

.control-board {
    display: flex;
    padding: 5px;
    gap: 26px;
    margin: 5px 0 0px 24px;
}

.buttons-board {
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
}
.buttons-board:hover {
    box-shadow: #82938a 0 0 5px 1px;
}

.buttons-board:active {
    box-shadow: inset #82938a 0 0 5px 1px;
}


.buttons-board i {
    align-self: center;
    font-size: 19px;
    color: var(--global-color);
}

.buttons-board span {
    font-size: 16px;
    font-family: monospace;
}

.for-list {
    background-color: var(--sub-color);
    width: 97%;
    height: 500px;
    margin: 5px 0 0px 24px;
    border-radius: 5px;
}

/*----------------------Создать плательщика модальное окно-----------*/

.paymentsModal {}

.paymentsModal.showPay .paymentsOverlay,
.paymentsModal.showPay .paymentsWindow {
    opacity: 2;
    z-index: 3;

}

.paymentsModal.hidePay .paymentsOverlay,
.paymentsModal.hidePay .paymentsWindow {
    opacity: 2;
    z-index: 3;
}

.paymentsOverlay, .paymentsWindow {
    opacity: 0;
    z-index: 0;
}

.paymentsModal.showPay .paymentsOverlay {
    transition: visibility 1s , opacity 1s;
}

.paymentsModal.showPay .paymentsWindow {
    transform: translateY(0);
}

.paymentsModal.hidePay .paymentsOverlay {
    opacity: 0;
    visibility: hidden;
    transition: visibility .8s , opacity .8s .8s;
}


.paymentsOverlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(166deg, black, #5a686294);
    transition: all .8s;
}

.paymentsWindow {
    margin: 0 auto;
    width: 700px;
    height: 600px;
    background: white;
    margin-top: 150px;
    border-radius: 5px;
    padding: 5px;
    transition: all .8s;
    transform: translateY(-800px);
}

.paymentsHeader {
    display: flex;
    justify-content: space-between;
    padding: 5px;
    font-family: monospace;
    font-weight: 500;
    font-size: 18px;
    border-bottom: 1px solid;
}

.paymentsBody {
    margin-top: 12px;
    height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}

.paymentsFooter {
    border-top: 1px solid;
    padding: 6px;
    display: flex;
    gap: 20px;
}

.savePay {
    margin-top: 10px;
    border: none;
    background-color: var(--global-color);
    font-size: 17px;
    color: white;
    border-radius: 4px;
    height: 30px;
    cursor: pointer;
    box-shadow: #5a8f6e 0 0 7px 2px;
}

.savePay:active {
    box-shadow: inset #5a8f6e 0 0 7px 2px;
}

.cancellationPay {
    margin-top: 10px;
    border: none;
    background-color: #9b9b9b;
    font-size: 17px;
    color: white;
    border-radius: 4px;
    height: 30px;
    cursor: pointer;
    box-shadow: #c4c7c5 0 0 7px 4px;
}

.cancellationPay:active {
    box-shadow: inset #c4c7c5 0 0 7px 4px;
}

#status {
    margin-left: 11px;
    font-size: 15px;
    font-family: monospace;
    border-radius: 4px;
}

.paymentsHeader span:nth-child(2) {
    cursor: pointer;

}

.nameBlock {
    padding: 6px;
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    background: #5a8f6e;
    border-radius: 4px;
    color: white;
    font-size: 15px;
    padding-left: 20px;
    width: 92%;
}

.nameOpenBlock {
    display: flex;
    justify-content: space-between;
    padding: 6px;
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    background: #5a8f6e;
    border-radius: 4px;
    color: white;
    font-size: 15px;
    padding-left: 20px;
    width: 92%;
    cursor: pointer;
}

.nameOpenBlock i {
    margin-right: 10px;
    font-size: 17px;
    cursor: pointer;
    transition: transform .3s ease-in;
    font-weight: bolder;
}


.itemsForForms {
    display: grid;
    gap: 10px;
    font-family: monospace;
    font-size: 15px;
    width: 70%;
    margin: 0 auto;
}

.itemForForm {
    display: flex;
    justify-content: space-between;
    position: relative;
}


.itemsForForms label::after {
    content: "*";
    margin-left: 5px;
    color: red;
}

.itemsForDop {
    display: none;
    gap: 10px;
    font-family: monospace;
    font-size: 15px;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 10px;

}



.fieldsPay {
    font-size: 17px;
    border-radius: 4px;
    border-color: #c7c3d1;
    font-weight: 300;
    width: 275px;
    height: 30px;
}

/*---------Таблица-------*/



#tablePayments {
    width: 100%;
    padding: 6px;
    border-spacing: 1px;

}

#tablePayments .headTable tr {
    height: 35px;
    border-radius: 3px;
    background-color: #ffffff;
}

#tablePayments .headTable tr td {
    text-align: -webkit-center;
}

.headTable {
    color: #61816e;
}


#tablePayments .listTable tr {
    height: 35px;
    border-radius: 3px;
    background-color: #ffffff;
}


#tablePayments .listTable tr td {
    text-align: -webkit-center;
}

.listTable {
    font-family: monospace;
    font-size: 16px;
    color: #2a2a2a;
}

#tablePayments .listTable tr:nth-child(2n+1) {
    background-color: #f5f5f5;
}

#tablePayments .listTable tr:nth-child(2n+2) {
    background-color: #f9f9f9;
}

#tablePayments .listTable tr:hover {
    background-color: #9eb5a7;
}

#tablePayments .listTable i {
    cursor: pointer;
    color: #7a7878;
}


/*----------------------Создать плательщика модальное окно-----------*/