@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
/* BODY */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200&display=swap');
body {
    background-color: #f3f6f9;
    font-family: 'Poppins', sans-serif;  
}
    
.button-close {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-color: #F3F6F9;
    border-radius: 4px;
}

    .button-close:hover {
        background-color: #e0e0e0;
        cursor: pointer;
    }

    .button-close img {
        width: 12px;
        height: 12px;
    }

h3 {
    color: #000000;
    font-size: 22px;
    font-weight: 300;
}

h4 {
    color: #000000;
    font-size: 18px;
    font-weight: 300;
}

.h-separator {
    border-top: 1px dashed #ccc;
    display: block;
    width: 100%;
    margin: 30px auto;
    padding: 0;
}
/* BUTTON */
.button {
    font-family: 'Poppins', sans-serif;
    border: 1px solid transparent;
    border-radius: 4px;
    display: inline-flex;
    padding: 10px 15px;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    flex-flow: row;
    text-decoration: none;
    color: #666;
    background-color: rgba(0,0,0,.04);
    transition: .3s;
    font-weight: 300;
    font-size: 20px;
    margin: 5px 0;
}

.buttonloginLogOut {
    font-family: 'Poppins', sans-serif;
    border: 1px solid transparent;
    border-radius: 4px;
    display: inline-flex;
    padding: 10px 31px;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    flex-flow: row;
    text-decoration: none;
    color: #666;
    background-color: rgba(0,0,0,.04);
    transition: .3s;
    font-weight: 300;
    font-size: 10px;
    margin: 5px 0px 0px -7px;
}

.button .icon {
    width: 35px;
    height: 30px;
    object-fit: cover;
    object-position: left;
    margin: 0 0 0 15px;
}

.button:hover .icon {
    object-position: right;
}

.buttonloginLogOut.transparent {
    border-color: rgba(0,0,0,.1);
    background-color: transparent;
}

.button.transparent {
    border-color: rgba(0,0,0,.1);
    background-color: transparent;
}

.buttonloginLogOut:hover {
    cursor: pointer;
    background-color: rgba(0,0,0,.08);
}

.button:hover {
    cursor: pointer;
    background-color: rgba(0,0,0,.08);
}

.buttonloginLogOut:active {
    cursor: pointer;
    background-color: rgba(0,0,0,.1);
}

.button:active {
    cursor: pointer;
    background-color: rgba(0,0,0,.1);
}

.button.small {
    font-size: 12px;
    padding: 5px 10px;
}

.buttonloginLogOut.small {
    font-size: 12px;
    padding: 5px 10px;
}

.button.green {
    background-color: #C9F7F5;
    color: #1BC5BD;
}

    .button.green.transparent {
        border-color: #1ABFB7;
        color: #1BC5BD;
        background-color: transparent;
    }

        .button.green:hover,
        .button.green.transparent:hover {
            background-color: #1ab1a9;
            color: #fff;
        }

        .button.green:active,
        .button.green.transparent:active {
            background-color: #189791;
            color: #fff;
        }


.buttonloginLogOut.red {
    background-color: #FFE1E4;
    color: #d14452;
}

.button.red {
    background-color: #FFE1E4;
    color: #d14452;
}

.buttonloginLogOut.red.transparent {
    border-color: #F64E60;
    color: #F64E60;
    background-color: transparent;
}

.button.red.transparent {
    border-color: #F64E60;
    color: #F64E60;
    background-color: transparent;
}

.buttonloginLogOut.red:hover,
.buttonloginLogOut.red.transparent:hover {
    background-color: #F64E60;
    color: #fff;
}

.button.red:hover,
.button.red.transparent:hover {
    background-color: #F64E60;
    color: #fff;
}

.buttonloginLogOut.red:active,
.buttonloginLogOut.red.transparent:active {
    background-color: #d14452;
    color: #fff;
}

.button.red:active,
.button.red.transparent:active {
    background-color: #d14452;
    color: #fff;
}

.button.blue {
    background-color: #c7e3ff;
    color: #3390F0;
}

    .button.blue.transparent {
        border-color: #3086db;
        color: #3390F0;
        background-color: transparent;
    }

        .button.blue:hover,
        .button.blue.transparent:hover {
            background-color: #3086db;
            color: #fff;
        }

        .button.blue:active,
        .button.blue.transparent:active {
            background-color: rgb(44, 116, 189);
            color: #fff;
        }
/* FILE*/
.add-file-container {
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    flex-flow: column;
    justify-content: center;
    text-align: center;
    background-color: #F3F6F9;
    padding: 30px 15px;
    border-radius: 4px;
}

.add-file-container1 {
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    flex-flow: column;
    justify-content: center;
    text-align: center;
    background-color: #F3F6F9;
    padding: 30px 15px;
    border-radius: 4px;
    width: 125px;
    height: 90px;
}

    .add-file-container1:hover {
        border-color: #ccc;
    }

.add-file-container:hover {
    border-color: #ccc;
}

.add-file-container1.green {
    border-color: none;
    color: #1ABFB7;
}

.add-file-container.green {
    border-color: none;
    color: #1ABFB7;
}

.add-file-container1.blue {
    border-color: none;
    color: #3390F0;
}

.add-file-container.blue {
    border-color: none;
    color: #3390F0;
}

.add-file-container.red {
    border-color: none;
    color: #E31E24;
}

.add-file-container1.red {
    border-color: none;
    color: #E31E24;
}

.add-file-container.green:hover {
    border-color: #1ABFB7;
}

.add-file-container1.green:hover {
    border-color: #1ABFB7;
}

.add-file-container.blue:hover {
    border-color: #3390F0;
}

.add-file-container1.blue:hover {
    border-color: #3390F0;
}

.add-file-container.red:hover {
    border-color: #E31E24;
}

.add-file-container1.red:hover {
    border-color: #E31E24;
}

.add-file-container input[type=file] {
    display: none;
}

.add-file-container1 input[type=file] {
    display: none;
}

.add-file-container img {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    margin: 10px auto;
    display: block;
}

.add-file-container1 img {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    margin: 10px auto;
    display: block;
}
/* TEXT */
.input-text-container {
    font-family: 'Poppins', sans-serif;
    /*border: 1px solid #ccc;*/
    border-bottom: 0;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    padding: 0;
}

    /*.input-text-container:hover {
       border: 1px solid  #aaa;
        border-bottom: 0;
    }*/

    .input-text-container input {
        margin: 0;
        padding: 16px 10px;
        border: none;
        outline: none;
        color: #7E8299;
        font-size: 16px;
        display: block;
    }

.text-container .text-form {
    border: 1px solid transparent;
    display: inline-flex;
    flex-flow: column;
    border-radius: 4px;
    padding: 7.5px 10px;
}

.text-container[data-edit='edit'] .text-form {
    border: 1px solid #ccc;
}

    .text-container[data-edit='edit'] .text-form:hover {
        background-color: rgba(0,0,0,.05);
    }

.text-container .text-form .title,
h5 {
    color: #7E8299;
    font-size: 12px;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

.text-container .text-form input {
    border: none;
    padding: 5px 0;
    outline: none;
    font-size: 16px;
    background-color: transparent;
}

.text-container .edit {
    display: flex;
    align-items: center;
    text-decoration: none;
    float: right;
}

    .text-container .edit a {
        text-decoration: none;
    }

    .text-container .edit img,
    .input-text-container img {
        display: block;
        margin: 5px;
    }
/* TEXTAREA */
textarea {
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    border: 1px solid #ccc;
    outline: none;
    padding: 15px;
    font-size: 16px;
    max-width: calc(100% - 30px);
    min-width: 150px;
    min-height: 50px;
}
/* SELECT */
.date-container {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #666;
    color: #666;
    margin: 0 7.5px;
    padding: 0;
}

    .date-container .date-value {
        font-size: 1rem;
        font-weight: 300;
        color: #666;
        line-height: 1;
        min-width: 120px;
        text-align: center;
    }




    .date-container input[type="date"] {
        border: none;
        border-radius: 0;
        background: none;
        padding: 0;
        margin: 0;
        color: transparent;
        left: 0;
        top: 0;
        width: 100%;
        height: 40px;
        font-size: 0px;
        outline: none;
        overflow: hidden;
        position: relative;
        background-image: url('../img/select-icon-2.png');
        background-position: top;
        background-position: center;
        background-repeat: no-repeat;
    }
    .date-container .date-selector {
        border: none;
        border-radius: 0;
        background: none;
        padding: 0;
        margin: 0;
        color: transparent;
        left: 0;
        top: 0;
        width: 100%;
        height: 40px;
        font-size: 0px;
        outline: none;
        overflow: hidden;
        position: relative;
        background-image: url('../img/select-icon-2.png');
        background-position: top;
        background-position: center;
        background-repeat: no-repeat;
        width:25px;
        cursor:pointer;
    }
    .date-container ::-webkit-datetime-edit,
    .date-container ::-webkit-datetime-edit-text,
    .date-container ::-webkit-datetime-edit-month-field,
    .date-container ::-webkit-datetime-edit-day-field,
    .date-container ::-webkit-datetime-edit-year-field,
    .date-container ::-webkit-inner-spin-button {
        display: none;
    }

    .date-container input[type=date]::-webkit-datetime-edit {
        display: none;
    }
   /* .date-container input[type=date]::-webkit-clear-button {
        display: none;
    }
    .date-container ::-moz-selection {
        display: none;
    }
    input[type="date"]::-webkit-clear-button {
    display: none;
    }
*/
   /*.date-container input[type=date]::-webkit-clear-button {
    display: none;
    }

    .date-container::-webkit-clear-button {
    display: none;
    }*/
    .date-container ::-webkit-calendar-picker-indicator {
        border: none;
        background: rgba(0,0,0,0);
        color: #fff;
        width: 30px;
        height: 45px;
        margin: 0;
        padding: 0;
        transition: .3s;
    }

    .date-container .date-selector ::-webkit-calendar-picker-indicator {
        border: none;
        background: rgba(0,0,0,0);
        color: #fff;
        width: 30px;
        height: 45px;
        margin: 0;
        padding: 0;
        transition: .3s;
    }
    .date-container .date-selector:hover ::-webkit-calendar-picker-indicator {
        cursor: pointer;
        background: rgba(0,0,0,.1);
    }

    .date-container:hover ::-webkit-calendar-picker-indicator {
        cursor: pointer;
        background: rgba(0,0,0,.1);
    }



.select-container.default .sub::-webkit-scrollbar-thumb,
.table-scroll::-webkit-scrollbar-thumb {
    background-color: #ccc;
}

.sub::-webkit-scrollbar-track {
    border-radius: 0px;
    background-color: #fff;
}

.sub::-webkit-scrollbar,
.table-scroll::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #fff;
}



.sub::-webkit-scrollbar-thumb,
.table-scroll::-webkit-scrollbar-thumb {
    border-radius: 0px;
    width: 5px;
    height: 5px;
    background-color: rgb(44, 116, 189);
    border-radius: 4px;
}



/* TABLE */
table {
    border-collapse: collapse;
    width: 100%;
    font-weight: 300;
    
}

.table-scroll {
    overflow: scroll;
    width: auto;
    height: auto;
    display: block;
    min-width: 150px;
    min-height: 150px;
    position: relative;
}

.compress {
}
.tablx-max {
    max-width: 75%;
}

.tablx-min {
    max-width: 100%;
}
/*
.table-x-scroll {
    overflow-x: auto;
    position: relative;
}

    .table-x-scroll table {
        width: auto !important;
        position: absolute;
    }
.table-scroll table {
    width: auto !important;
}*/
table thead td,
table thead th {
    border-bottom: 1px dotted #ccc;
    color: #3390F0;
    font-size: 18px;
    font-weight: 300;
}

table tfoot td {
    border-top: 1px dotted #ccc;
    background-color: rgba(0,0,0,.05);
}

table td,
table th {
    border-right: 1px dotted #ccc;
    padding: 15px;
    color: #3F4254;
    font-size: 16px;
    transition: .3s;
}

    table td.border-right-none,
    table th.border-right-none {
        border-right: none !important;
        width: 0px;
    }

table tr:hover td {
    background-color: rgba(0,0,0,.02);
}

table td div.block,
table th div.block {
    width: 10px;
    min-height: 54px;
    border-radius: 4px 0 0 4px;
    display: flex;
    align-content: center;
    align-items: center;
    background-color: #999;
    margin-right: 20px;
}

    table td div.block::after,
    table th div.block::after {
        display: block;
        width: 10px;
        height: 10px;
        min-width: 10px;
        min-height: 10px;
        border-radius: 100%;
        content: "";
        background-color: #999;
        margin-left: 20px;
    }

    table td div.block.green,
    table td div.block.green::after,
    table div.block.green {
        background-color: #1ABFB7;
    }

    table td div.block.orange,
    table td div.block.orange::after {
        background-color: #F9A400;
    }

    table td div.block.red,
    table td div.block.red::after {
        background-color: #F64E60;
    }

table td:last-child {
    border-right: none;
}

table td.center,
table tr.center td {
    text-align: center;
}

table td.left,
table tr.right td {
    text-align: left;
}

table td.right,
table tr.left td {
    text-align: right;
}

table .sort {
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-content: center;
    align-items: center;
}

    table .sort .icon {
        display: block;
        margin: 2.5px 7.5px;
    }

.select-container.default .sub::-webkit-scrollbar-thumb {
    background-color: #ccc;
}

.sub::-webkit-scrollbar-track {
    border-radius: 0px;
    background-color: #fff;
}

.select-container,
.select-container-multiple,
.select-container-list {
    font-size: 14px;
    font-weight: 300;
    display: inline-block;
    min-width: 200px;
    border-radius: 4px;
    border: 1px solid transparent;
}

    .select-container select,
    .select-container-multiple select,
    .select-container-list select {
        display: none;
    }

    .select-container .selected-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-flow: nowrap;
    }

        .select-container .selected-container .icon,
        .select-container.default .selected-container .icon {
            margin: 5px 20px 5px 10px;
            width: 35px;
            height: 30px;
            object-fit: cover;
            object-position: left;
        }

    .select-container.default .selected-container .icon {
        width: 10px;
        height: 16px;
    }

    .select-container .selected-container:hover .icon {
        object-position: right;
    }

    .select-container div.select,
    .select-container-multiple div.select,
    .select-container-list div.select {
        position: relative;
        cursor: pointer;
    }

        .select-container div.select div.selected {
            border-radius: 4px;
            padding: 10px 15px;
            font-size: 20px;
        }

        .select-container div.select .sub,
        .select-container div.select ul,
        .select-container-multiple ul,
        .select-container-list ul {
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
        }

        .select-container div.select .sub {
            background-color: #fff;
            box-shadow: 0px 0px 10px #00000057;
            max-height: 150px;
            overflow-x: auto;
            display: none;
            position: absolute;
            width: 100%;
            /*max-width : 200px;*/
            margin-top: 5px;
            border-radius: 4px;
            z-index: 3;
        }

            .select-container div.select .sub.open {
                display: block;
                color: #000;
            }

            .select-container div.select .sub li,
            .select-container-multiple li,
            .select-container-list li {
                border-radius: 4px;
                margin: 2.5px;
                padding: 5px 10px;
            }

                .select-container li:hover,
                .select-container-multiple li:hover,
                .select-container-list li:hover {
                    background-color: rgba(0,0,0,.05);
                    cursor: pointer;
                }

                .select-container div.select .sub li.selected,
                .select-container-multiple li.selected,
                .select-container-list li.selected {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    color: #44c3bb;
                }

                    .select-container div.select .sub li.selected::after,
                    .select-container-multiple li.selected::after,
                    .select-container-list li.selected::after {
                        content: "";
                        background-image: url('../img/checkmark.png');
                        width: 18px;
                        height: 19px;
                    }

    .select-container.blue {
        background-color: #3390F0;
        color: #fff;
        transition: .3s;
    }

        .select-container.blue.light {
            background-color: #c7e3ff;
            color: #3390F0;
            transition: .3s;
        }

        .select-container.blue:hover,
        .select-container.blue.open {
            border-color: #3086db;
        }

        .select-container.blue:hover {
            background-color: #3084d8;
        }

        .select-container.blue.light:hover {
            background-color: #c7e3ff;
        }

    .select-container.default {
        background-color: fff;
        color: #666;
        transition: .3s;
        /*border: 0.5px solid #ccc;
        border-bottom:0px;*/
        font-size: 16px;
        font-weight: 300;
    }

        .select-container.default div.select div.selected {
            font-size: 16px;
            font-weight: 300;
        }

        .select-container.default:hover {
            background-color: rgba(0,0,0,.05);
        }
/* POPUP FORM */
.popupForm {
    display: none;
    transition: .3s;
}

    .popupForm.open {
        display: block;
    }
/* TABLE */
table {
    border-collapse: collapse;
    width: 100%;
    font-weight: 300;
}

.table-center {
    width: 100% !important;
}

table thead td {
    border-bottom: 1px dotted #ccc;
    color: #3390F0;
    font-size: 18px;
}

table tfoot td {
    border-top: 1px dotted #ccc;
    background-color: rgba(0,0,0,.05);
}

table td {
    border-right: 1px dotted #ccc;
    padding: 15px;
    color: #3F4254;
    font-size: 16px;
    transition: .3s;
}

table tr:hover td {
    background-color: rgba(0,0,0,.02);
}

table td div.block {
    width: 10px;
    min-height: 54px;
    border-radius: 4px 0 0 4px;
    display: flex;
    align-content: center;
    align-items: center;
    background-color: #999;
    margin-right: 20px;
}

    table td div.block::after {
        display: block;
        width: 10px;
        height: 10px;
        min-width: 10px;
        min-height: 10px;
        border-radius: 100%;
        content: "";
        background-color: #999;
        margin-left: 20px;
    }

    table td div.block.green,
    table td div.block.green::after {
        background-color: #1ABFB7;
    }

    table td div.block.orange,
    table td div.block.orange::after {
        background-color: #F9A400;
    }

    table td div.block.red,
    table td div.block.red::after {
        background-color: #F64E60;
    }

table td:last-child {
    border-right: none;
}

table td.center,
table tr.center td {
    text-align: center;
}

table td.left,
table tr.right td {
    text-align: left;
}

table td.right,
table tr.left td {
    text-align: right;
}
/* TEXT*/
.text.red {
    color: #E31E24;
}

.text.green {
    color: #1ABFB7;
}

.text.orange {
    color: #F9A400;
}

.text.blue {
    color: #3390F0;
}

.text.uppercase {
    text-transform: uppercase;
}

.text.bold {
    font-weight: bold;
}
/* NAV */
nav {
    position: relative;
/*    transition: .3s;
*/    background-color: #ffffff;
    border-color: #ebedf3;
    z-index: 80;
}

    nav.min {
        width: calc(100px - 50px);
        min-width: calc(100px - 50px);
        /*transform: translateX(-424px);*/
    }

    nav .nav-toggler {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 54px;
        height: 54px;
        position: absolute;
        bottom: 30px;
        right: 12px;
        background: #3f4254;
        color: #ffffff;
        border: none;
        border-radius: 3px;
        z-index: 200;
    }

        nav .nav-toggler:hover {
            cursor: pointer;
            background: #383b49;
        }

        nav .nav-toggler img {
            transition: .3s;
            width: 15px;
            height: 27px;
            transform: rotate(-180deg);
        }

    nav.min .nav-toggler img {
        transform: rotate(0deg);
    }

    nav .logo {
        width: 100%;
        max-width: 247px;
        height: 54px;
        display: block;
        object-fit: cover;
        object-position: left;
        transition: .3s;
    }

    nav.min .logo {
        max-width: 247px;
        height: 54px;
    }

    nav span.search {
        display: flex;
        flex-flow: row;
        align-items: center;
        justify-content: space-between;
        border: none;
        height: auto;
        background-color: #f3f6f9;
        border-radius: 6px;
        width: 100%;
        max-width: 256px;
        margin: 30px 0;
    }

/*.login {
    position: relative;
    left: 200px;
    top: 170px;
}*/

@media screen and (min-width: 300px) {
    .loginSearch {
        align-items: center;
        border: none;
        height: 200px;
        background-color: white;
        border-radius: 6px;
        width: 25%;
    }
}

@media screen and (max-width: 0px) {
    .loginSearch {
        align-items: center;
        border: none;
        height: 200px;
        background-color: white;
        border-radius: 6px;
        width: 100%;
    }
}

.LogIn {
    text-align: center;
    margin-top: 20px;
}


nav span.search input[type="search"] {
    border: none;
    height: 45px;
    width: calc(100% - 30px);
    border-radius: 6px 0 0 6px;
    background-color: transparent;
    padding-right: 15px;
    padding-left: 15px;
    color: #7e8299;
}

    nav span.search input[type="search"]:focus {
        outline: none;
        background-color: rgba(0,0,0,.02);
    }



.loginText input[type="text"] {
    border: 0.5px solid #ccc;
    height: 45px;
    width: calc(100% - 30px);
    border-radius: 6px;
    background-color: transparent;
    padding-right: 15px;
    padding-left: 15px;
    color: #7e8299;
    margin-bottom: 10px;
}

.loginText input[type="password"] {
    border: 0.5px solid #ccc;
    height: 45px;
    width: calc(100% - 30px);
    border-radius: 6px;
    background-color: transparent;
    padding-right: 15px;
    padding-left: 15px;
    color: #7e8299;
}

.loginText input[type="text"]:focus {
    outline: none;
    background-color: rgba(0,0,0,.05);
}

.loginText input[type="password"]:focus {
    outline: none;
    background-color: rgba(0,0,0,.05);
}

nav span.search button {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 0 6px 6px 0;
    background-color: transparent;
}

    nav span.search button:hover {
        cursor: pointer;
        background-color: rgba(0,0,0,.04);
    }

    nav span.search button img {
        width: 24px;
        height: 24px;
    }

nav ul {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    margin: 30px 0;
}

    nav ul li {
        margin-bottom: 15px;
    }

        nav ul li:last-child {
            margin-bottom: 0;
        }

        nav ul li a {
            color: #7e8299;
            text-decoration: none;
            display: flex;
            align-items: center;
            width: 100%;
            font-size: 14px;
            text-align: left;
            text-transform: uppercase;
            position: relative;
        }

            nav ul li a img {
                height: 50px;
                width: 50px;
                display: block;
                object-fit: cover;
                object-position: left;
                margin-right: 55px;
            }

        nav ul li:hover a {
            color: #000000;
        }

            nav ul li:hover a img {
                object-position: right;
            }

nav.min ul li a span {
    position: absolute;
    left: -70px;
    background-color: #ffffff;
    min-width: 180px;
    padding: 10px 15px;
    border-radius: 6px;
    color: #000000;
    text-transform: initial;
    box-shadow: 0px 0px 20px #0000001A;
    transition: .3s;
    display: none;
    z-index: 200;
    /*opacity: 0;*/
}

    nav.min ul li a span::after {
        content: '';
        position: absolute; /* Абсолютное позиционирование */
        border: 10px solid transparent;
        border-right: 10px solid #ffffff;
        left: -20px;
    }

nav.min ul li a:hover span {
    /*opacity: 1;*/
    display: block;
    left: 70px;
}
/* HEADER*/
header {
}

    header > div {
        width: 100%;
        height: calc(100% - 1px);
        display: flex;
        align-items: center;
        align-content: center;
        border-bottom: 1px dotted #888;
    }

    header .title {
        align-items: center;
    }

    header h2 {
        font-size: 26px;
        font-weight: normal;
    }

    header .breadcrumbs {
        margin: 0 30px;
        color: #b9b9b9;
        font-size: 15px;
    }

        header .breadcrumbs span::after {
            content: " / ";
        }

        header .breadcrumbs span:last-child::after {
            content: initial;
        }

    header .login {
        display: flex;
        justify-content: start;
        align-items: center;
        align-content: center;
        margin: 0 24px;
    }

        header .login img {
            display: block;
            margin-right: 5px;
            width: 23px;
            height: 22px;
        }

        header .login a {
            font-size: 12px;
            color: #3F4254;
            display: block;
            text-align: left;
            font-weight: normal;
            text-decoration: none;
        }

/*.logOut {
    display: none;
}*/

.heading_decoration {
    text-decoration: none;
}

    .heading_decoration:hover {
        text-decoration: underline;
    }

header .loginLogOut {
    position: relative;
    margin: 0 5px;
}

    header .loginLogOut > a {
        background-color: #fff;
        border-radius: 6px;
        height: calc(38px - 10px);
    }

    header .loginLogOut ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    header .loginLogOut .submenu {
        position: absolute;
        left: 8px;
        display: none;
        z-index: 5;
        /*background-color: #fff;*/
        box-shadow: 0px 0px 10px #0000000D !;
        border-radius: 4px;
        border: none;
        /*padding: 10px;*/
    }

    header .loginLogOut:hover .submenu {
        display: block;
    }

    header .loginLogOut .lang-arrow {
        transition: .3s;
        margin: 0 0 0 10px;
    }

    header .loginLogOut:hover .lang-arrow {
        transform: rotate(180deg);
    }
    .fontIntend{
        padding:0px 4px !important;
    }
    header .loginLogOut a {
        text-decoration: none;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
        padding: 5px 10px;
        border-radius: 6px;
        color: #3F4254;
        font-size: 12px;
    }

    header .loginLogOut .flag {
        display: block;
        border-radius: 3px;
        border: none;
        margin-right: 10px;
    }

    header .loginLogOut a:hover {
        background-color: rgba(0,0,0,.05);
    }



header .languages {
    position: relative;
    margin: 0 5px;
}

    header .languages > a {
        background-color: #fff;
        border-radius: 6px;
        height: calc(38px - 10px);
    }

    header .languages ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    header .languages .submenu {
        position: absolute;
        left: 0;
        display: none;
        z-index: 5;
        background-color: #fff;
        box-shadow: 0px 0px 10px #0000000D;
        border-radius: 4px;
        border: none;
        padding: 10px;
    }

    header .languages:hover .submenu {
        display: block;
    }

    header .languages .lang-arrow {
        transition: .3s;
        margin: 0 0 0 10px;
    }
.level-select .selectlevels_img {
    transition: .3s !important;
    margin: 0px !important;
}
header .fonts .lang-arrow {
    transition: .3s;
    margin: 0px;
}
/*.level-select:hover .selectlevels_img {
    transform: rotate(-270deg) !important;
}*/
    header .languages:hover .lang-arrow {
        transform: rotate(-180deg);
    }
    header .fonts:hover .lang-arrow {
        transform: rotate(-180deg);
    }

    header .languages a {
        text-decoration: none;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: flex-start;
        padding: 5px 10px;
        border-radius: 6px;
        color: #3F4254;
        font-size: 12px;
    }

    header .languages .flag {
        display: block;
        border-radius: 3px;
        border: none;
        margin-right: 6px;
    }

    header .languages a:hover {
        background-color: rgba(0,0,0,.05);
    }

header .help {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    text-decoration: none;
    background-color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 6px;
}

    header .help:hover {
        cursor: pointer;
        background-color: rgba(0,0,0,.05);
    }
/* ARTICLE */
article {
    font-weight: normal;
}

    article section {
        background-color: #fff;
        box-shadow: 0px 0px 10px #0000000D;
        border-radius: 4px;
        border: none;
        display: block;
        padding: 30px;
        top: 0;
        /*margin: 0 auto 30px;*/
        position: relative;
        transition: .3s;
        border: none;
        margin-bottom: 0 !important;
    }
     .error-section {
        background-color: #fff;
        box-shadow: 0px 0px 10px #0000000D;
        border-radius: 4px;
        border: none;
        display: block;
        padding: 30px;
        top: 0;
        /*margin: 0 auto 30px;*/
        position: relative;
        transition: .3s;
        border: none;
        margin-bottom: 0 !important;
        margin:40px;
        height:100%;
/*        padding-bottom:10%;
*/    }
        article section.close .content {
            height: 0;
            display: none;
        }

section .button-toggler {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 10px 15px;
    border-radius: 4px;
}

    section .button-toggler:hover {
        background-color: rgba(0,0,0,.05);
    }

    section .button-toggler img {
        transition: .3s;
    }

section.close .button-toggler img {
    transform: rotate(-180deg);
}


section .button-toggler-deposit {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 10px 15px;
    border-radius: 4px;
}

    section .button-toggler-deposit:hover {
        background-color: rgba(0,0,0,.05);
    }

    section .button-toggler-deposit img {
        transition: .3s;
    }

section.close .button-toggler-deposit img {
    transform: rotate(-180deg);
}


/* PANEL */
.left-panel,
.right-panel {
    position: absolute;
    background-color: #fff;
    height: calc(100% - 50px);
    top: 0;
    z-index: 6;
    width: 100%;
    max-width: calc(389px - 50px);
    box-shadow: 0px 0px 73px #00000029;
    padding: 25px;
    transition: .3s;
    display: none;
}

.left-panel {
    left: -390px;
    border-right: 1px solid #ebedf3;
}

.right-panel {
    right: -390px;
    border-left: 1px solid #ebedf3;
}

.left-panel.open {
    left: 0;
    display: block;
}

.right-panel.open {
    right: 0;
    display: block;
}

.left-panel .title,
.right-panel .title {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}
/* FOOTER */


    footer > div {
        width: 100%;
    }

    footer a {
        color: #B9B9B9;
        text-decoration: none;
        margin: 0 5px;
    }

        footer a:hover {
            color: #3F4254;
        }
/*CUSTOM CSS START----------------------------------------------------------------------*/


h3.title.Deposits_RecordsGroup {
    position: relative;
    right: 46px;
}
span#ContentPlaceHolder1_Lbl_Records1 {
    position: relative;
    right: 69px;
    font-size: 16.5px;
}
div#dipoDiv {
    position: relative;
    left: 200px;
    bottom: 21px;
}
img.Three_acc {
    margin-bottom: -4px;
    padding: 0px 1px;
}

p.withdrawBox {
    padding: 0px 13px;
}
/*.withdrawBoxspan {
    margin-right: 28px;
}*/
.pull-left.res-handle.LastThreerows {
    position: relative;
    left: -82px;
    top: -78px;
}
*:disabled {
    background-color: white;
}
.selectlevelsh{
    background-color:white !important;
}
.placeholder-change::-webkit-input-placeholder {
    color: #666666 !important;
}
.positionsAll .content p {
    color: #c0afb9;
    text-align: left;
}
.res-handle {
    min-width: 340px;
}
.Pie-Equity {
    position: absolute;
    left: 4%;
    bottom: 32%;
    width: 20%;
}
.Pie-Equity-Bar {
    width: 15%;
    background-color: #7d8095;
    height: 1px;
    position: absolute;
    left: 25%;
    bottom: 36%;
    z-index: 10000;
}
.pie-Balance-Bar {
    width: 15%;
    background-color: #a6bced;
    height: 1px;
    position: absolute;
    right: 29%;
    top: 44%;
    z-index: 10000;
}
.pie-Balance {
    position: absolute;
    right: 6%;
    top: 40%;
    width: 20%
}
.sticky-header {
    position: sticky;
    top: 0;
    background-color: white;
}
.footerDateAuto {
    margin-right: 460px !important;
}

.content_min .footerDateAuto {
    margin-right: 193px !important;
}
nav .min {
    position: fixed !important;
    left: 0;
    top: 0;
}
.fontChange
{
    font-family:  Arial, Helvetica, sans-serif;
    /*font-weight: bold;*/
}
.mobile-lang-show{
    display:none !important;
}
.font-span-short{
    display:none;
}

header .fonts {
    position: relative;
    margin: 0 5px;
}

    header .fonts > a {
        background-color: #fff;
        border-radius: 6px;
        height: calc(38px - 10px);
    }

    header .fonts ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    header .fonts .submenu {
        position: absolute;
        left: 0;
        display: none;
        z-index: 5;
        background-color: #fff;
        box-shadow: 0px 0px 10px #0000000D;
        border-radius: 4px;
        border: none;
        padding: 10px;
    }

    header .fonts:hover .submenu {
        display: block;
    }

    header .languages .lang-arrow {
        transition: .3s;
        margin: 0 0 0 10px;
    }
header .fonts .lang-arrow {
    padding: 0px 5px !important;
}
header .fonts:hover .lang-arrow {
    transform: rotate(-180deg);
   padding:0px 5px !important;
}

header .fonts a {
    text-decoration: none;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    padding: 5px 10px;
    border-radius: 6px;
    color: #3F4254;
    font-size: 12px;
}

header .fonts .flag {
    display: block;
    border-radius: 3px;
    border: none;
    margin-right: 10px;
}

header .fonts a:hover {
    background-color: rgba(0,0,0,.05);
}
header .fonts .submenu a:hover {
    background-color: rgba(0,0,0,.05);
    width: 100%;
}
header .languages .submenu a:hover {
    background-color: rgba(0,0,0,.05);
    width: 100%;
}
.showa_aff {
    position: relative;
    margin: 0 5px;
}

    .showa_aff > a {
        background-color: #fff;
        border-radius: 6px;
        height: calc(38px - 10px);
    }

    .showa_aff ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .showa_aff .submenu_aff {
        position: absolute;
        left: 8px;
        display: none;
        z-index: 5;
        /*background-color: #fff;*/
        box-shadow: 0px 0px 10px #0000000D !;
        border-radius: 4px;
        border: none;
        /*padding: 10px;*/
    }

    /*.showa_aff:hover .submenu_aff {
        display: block;
    }*/
    .showa_afff:hover .submenu_aff {
        display: block;
    }
    .showa_aff a {
        text-decoration: none;
        align-content: center;
        align-items: center;
        justify-content: center;
        padding: 5px 10px;
        border-radius: 6px;
        color: #3F4254;
        font-size: 12px;
    }

    .showa_aff .flag {
        display: block;
        border-radius: 3px;
        border: none;
        margin-right: 10px;
    }



/*________________*/



.showarrow {
    position: relative;
    margin: 0 5px;
}

    .showarrow > a {
        background-color: #fff;
        border-radius: 6px;
        height: calc(38px - 10px);
    }

    .showarrow ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .showarrow .submenushow {
        position: absolute;
        left: 8px;
        display: none;
        z-index: 5;
        /*background-color: #fff;*/
        box-shadow: 0px 0px 10px #0000000D !;
        border-radius: 4px;
        border: none;
        /*padding: 10px;*/
    }

    .showarrow:hover .submenushow {
        display: block;
    }

    .showarrow a {
        text-decoration: none;
        align-content: center;
        align-items: center;
        justify-content: center;
        padding: 5px 10px;
        border-radius: 6px;
        color: #3F4254;
        font-size: 12px;
    }

    .showarrow .flag {
        display: block;
        border-radius: 3px;
        border: none;
        margin-right: 10px;
    }




.ctrl {
    width: 100%;
    position: relative;
}

nav.min .statistics {
    display: none;
}

.point:hover {
    cursor: pointer;
}

nav.min .arrow {
    display: none;
}
.loginhover{
    cursor:pointer;
}
.nortification {
    display: block;
    font-size: 14px;
    width: 80%;
    padding: 5px 0;
    position: absolute;
    top: 0;
    left: 10%;
    right: 15%;
    margin-left: 0px;
    box-sizing: border-box;
    border-radius: 15px;
    background-color: #fff;
    color: #3a9ab9;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 3px 0 rgba(0,0,0,0.2);
}

.animateOpen {
    -webkit-animation: moveOpen 8s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-fill-mode: forwards;
}

.break_notification {
    display: none;
}
/* Safari and Chrome */
@-webkit-keyframes moveOpen {
    from {
        -webkit-transform: translate(0,-150px);
    }

    10% {
        -webkit-transform: translate(0,5px);
    }

    12% {
        -webkit-transform: translate(0,5px);
    }

    16% {
        -webkit-transform: translate(0,5px);
    }

    80% {
        -webkit-transform: translate(0,5px);
    }

    85% {
        -webkit-transform: translate(0,2px);
    }

    to {
        -webkit-transform: translate(0,-150px);
    }
}

.overflow-scroll {
    overflow: scroll;
}

.margin-right-f5 {
    margin-right: 5px;
}

table.small-font-table th {
    color: #3390F0;
/*    font-size: 12px;
*/    text-align: center;
}

table.small-font-table td {
    text-align: center;
    background-color: rgba(0,0,0,.02);
/*    font-size: 12px;
*/}

table.my-special-table th {
    color: #3390F0;
    text-align: center;
}

table.my-special-table td {
    /*text-align: left;*/
    background-color: rgba(0,0,0,.02);
}
/*CUSTOM CSS END------------------------------------------------------------------------*/
/* PROFILE */

/*table .rightCenter td {
    text-align: right !important;
}*/
/*.myStyle {
    background-color: blue !important;
    color: Red !important;
}*/
.user-profile {
    display: flex;
    justify-content: space-between;
    margin: 30px auto;
    width: 100%;
    position: relative;
}

    .user-profile .avatar {
        margin-right: 15px;
    }

        .user-profile .avatar, .user-profile .avatar img {
            width: 100px;
            min-width: 100px;
            height: 100px;
            border-radius: 4px;
            position: relative;
            display: block;
        }

            .user-profile .avatar::before {
                background-color: #3390F0;
                width: 16px;
                height: 16px;
                min-width: 16px;
                min-height: 16px;
                border: 2px solid #fff;
                position: absolute;
                top: -8px;
                right: -8px;
                content: "";
                display: block;
                z-index: 3;
                border-radius: 100%;
            }

.user-profile {
    color: #7E8299;
    font-size: 12px;
}

    .user-profile .button {
        margin-right: 10px;
    }

    .user-profile .user-profile-desc {
        margin-top: -12px;
        position: relative;
    }

        .user-profile .user-profile-desc p {
            margin-bottom: 7.5px;
            display: flex;
            align-items: center;
            width: 100%;
        }

        .user-profile .user-profile-desc .mail {
            display: inline-block;
            margin-right: 10px;
            width: 24px;
            height: 24px;
        }

        .user-profile .user-profile-desc .edit {
            float: right;
            cursor: pointer;
            text-decoration: none;
            display: block;
        }

            .user-profile .user-profile-desc .edit img {
                width: 24px;
            }

.user-profile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    .user-profile-nav li {
        display: flex;
        width: 100%;
        margin-bottom: 25px;
    }

        .user-profile-nav li:last-child {
            margin-bottom: 0;
        }

        .user-profile-nav li div.icon, a.report div.icon {
            background-color: #F1F4F6;
            width: 40px;
            height: 40px;
            border-radius: 4px;
            margin-right: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

            .user-profile-nav li div.icon span, a.report div.icon span {
                position: absolute;
                top: -15px;
                right: -15px;
                background-color: #FFE1E4;
                color: #E31E24;
                font-size: 10px;
                padding: 4px 12px;
                border-radius: 4px;
                font-weight: bold;
            }

        .user-profile-nav li a, a.report {
            text-decoration: none;
            display: flex;
            border-radius: 4px;
            transition: .3s;
            width: 100%;
            padding: 5px 0;
            align-items: center;
        }

a.report {
    padding: 0;
}

.user-profile-nav li a:hover {
    cursor: pointer;
    background-color: rgba(0,0,0,.05);
}

.user-profile-nav li p:first-child {
    color: #3F4254;
    font-size: 12px;
    font-weight: bold;
}

.user-profile-nav li p:last-child {
    width: 100%;
    color: #7E8299;
    font-size: 12px;
    font-weight: 300;
}

.user-profile-section .user-avatar, .user-profile-section .user-avatar img {
    border-radius: 4px;
    width: 100%;
    max-width: 100px;
    max-height: 100px;
    position: relative;
}

.user-profile-section {
    display: flex;
    justify-content: space-between;
    color: #3F4254;
}

    .user-profile-section a {
        text-decoration: none;
    }

    .user-profile-section > div {
        margin-right: 15px;
    }

        .user-profile-section > div:last-child {
            margin-right: 0;
        }

    .user-profile-section p.title {
        color: #7E8299;
        font-size: 12px;
    }

    .user-profile-section .user-profile-edit {
        display: flex;
        font-size: 14px;
    }

        .user-profile-section .user-profile-edit .pen {
            width: 15px;
            height: 15px;
            margin-left: 10px;
        }

.user-password .title, .user-authorization-logs .title {
    display: flex;
    align-items: center;
}

    .user-password .title .icon, .user-authorization-logs .title .icon {
        width: 60px;
        height: 60px;
        border-radius: 4px;
        background-color: #f3f6f9;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 15px;
    }

.user-password .button-panel, .user-authorization-logs .button-panel {
    margin: 15px 0;
}

    .user-password .button-panel .button, .user-authorization-logs .button-panel .button {
        margin-right: 10px;
    }
/* HOME */
.home.widgets {
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    background-color: transparent;
    box-shadow: initial;
    padding: 0;
    margin: 0;
}

    .home.widgets .block {
        margin-right: 30px;
    }

        .home.widgets .block:last-child {
            margin-right: 0;
        }

/* changes*/
.deposits-record {
   /* display: inline-block;*/
    /* padding-right: 60px;*/
  
}

.deposits-head {
    max-width: 300px;
}

/* changes*/
.deposits-record .content {
    border-radius: 4px;
    margin: 0 0;
    width: 100%;
    max-width: 240px;
    height: 286px;
    position: relative;
    color: #fff;
}

    .deposits-record .content a {
        color: #fff;
        text-decoration: none;
        font-size: 13px;
        font-weight: 300;
    }

    /* changes*/
    .deposits-record .content ul {
        list-style: none;
        display:flex;
       /* padding: 0;
        margin: 0;*/
       /* top: 1px;
        right: -61px;
        position: absolute;*/
    }

        .deposits-record .content ul li a {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            transition: .3s;
        }

            .deposits-record .content ul li a .icon {
                transition: .3s;
            }

            .deposits-record .content ul li a:hover .icon {
                background-color: rgba(0,0,0,.05);
            }

        .deposits-record .content ul li .icon {
            border-bottom: 1px solid #ccc;
            border-left: none;
            margin-left: 15px;
            border-right: 1px solid #ccc;
            border-bottom: 1px solid #ccc;
            padding: 1px 5px;
        }

        .deposits-record .content ul li:first-child .icon {
            border-radius: 0 4px 0 0;
            border-top: 1px solid #ccc;
        }

        .deposits-record .content ul li:last-child .icon {
            border-radius: 0 0 4px 0;
        }

.balances, .accounts {
    background-position: bottom right;
    background-repeat: no-repeat;
    background: linear-gradient(152deg, #6AA1E3 0%, #8A8CEC 100%) !important;
    position: relative;
}

    .balances::before, .accounts::before {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        background-image: url(../img/balances-background-icon.png);
        background-position: center;
        width: 130px;
        height: 222px;
    }

    .deposits-record .content .deposits-record-icon, .balances .balances-icon, .accounts .accounts-icon {
        position: absolute;
        left: 15px;
        bottom: 15px;
        display: block;
    }

.balance-and-equity h4 {
    /*text-align: left;*/
    margin-bottom: 30px;
}

.balance-and-equity {
    background-color: transparent;
    box-shadow: initial;
    text-align: center;
    padding: 0;
    border:none;
}

    .balance-and-equity > div {
        text-align: center;
        background-color: #f9fafc;
        width: auto;
        display: inline-flex;
        border-radius: 4px;
        padding: 30px;
    }

    .balance-and-equity .separator {
        background-color: #edf2f7;
        width: 2px;
        height: calc(100% - 30px);
        margin: 15px;
    }

    .balance-and-equity .item h5 {
        color: #3f4254;
        font-size: 16px;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .balance-and-equity .item .value {
        color: #3f4254;
        font-size: 25px;
        text-transform: uppercase;
        font-weight: bold;
    }

    .balance-and-equity .item .icon {
        margin-right: 15px;
    }

    .balance-and-equity .item .desc {
        color: #5887ec;
        font-size: 16px;
        text-transform: uppercase;
    }

.deposits-record .next {
    color: #3F4254;
    font-size: 16px;
    font-weight: normal;
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    margin-top: 10px;
}
  .deposits-record .next span{
        margin-left: 10px;
        border-bottom: 1px dashed transparent;
    }

    .deposits-record:hover span > span{        
        border-bottom: none;
    }
/*
.deposits-record:hover span > span {
    border-bottom: 1px dashed #3F4254;
}
*/
.block.balances, .block.accounts, .block.report {
    width: 100%;
    max-width: 310px;
    height: 286px;
    border-radius: 4px;
    color: #fff;
    position: relative;
    box-shadow: 0px 0px 10px #0000000D;
    background-repeat: no-repeat;
}

.block.report {
    background-color: #666;
}

.balances .title, .widgets .block .title {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    margin: 30px;
}

.block.report .title {
    color: #666;
}

.balances table {
    margin: 0 25px;
    width: auto;
}

    .balances table td {
        border: none;
        color: #fff;
        padding: 5px;
    }

.home.widgets .block .details {
    color: #fff;
    position: absolute;
    right: 25px;
    bottom: 15px;
    text-decoration: none;
    display: flex;
    align-content: center;
}

.home.widgets .block.report .details {
    color: #666;
}

.home.widgets .block .details span {
    font-size: 16px;
    font-weight: normal;
    border-bottom: 1px dashed transparent;
    display: inline-block;
    line-height: 1;
}

.home.widgets .block .details:hover span {
    border-bottom: 1px dashed #fff;
}

.home.widgets .block.report .details:hover span {
    border-bottom: 1px dashed #666;
}


.row .wrap .details:hover span {
    border-bottom: 1px dashed #fff;
}

.home.widgets .block .details img {
    width: 9px;
    height: 17px;
    margin-left: 10px;
}

.block.accounts {
    position: relative;
}

    .block.accounts .content {
        position: relative;
    }

        .block.accounts .content p, .block.report .content p {
            margin: 0 30px;
        }

.block.report .content p {
    color: #666;
}
/* DIALOG */
.dialog-container {
    position: fixed;
    background-color: rgba(0,0,0,.8);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    display: none;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-flow: column;
    z-index: 98;
}

    .dialog-container.show {
        display: flex;
    }

    .dialog-container .dialog-form {
        border-radius: 4px;
        background-color: #F3F6F9;
        box-shadow: 0px 0px 20px #00000029;
        padding: 30px;
        display: flex;
        flex-flow: column;
        border: 1px solid #707070;
        width: calc(100% - 90px);
        max-width: 600px;
        position: relative;
        display: none;
    }

        .dialog-container .dialog-form.show {
            display: flex;
        }

        .dialog-container .dialog-form .dialog-close {
            cursor: pointer;
            position: absolute;
            padding: 7.5px;
            display: flex;
            top: -40px;
            right: -40px;
            border-radius: 6px;
        }

            .dialog-container .dialog-form .dialog-close:hover {
                background-color: rgba(0,0,0,.1);
            }

            .dialog-container .dialog-form .dialog-close img {
                width: 21px;
                height: 21px;
            }

.dialog-content h3 {
    color: #3F4254;
    font-size: 33px;
    text-align: left;
}

.dialog-content h4 {
    color: #7E8299;
    font-size: 20px;
    margin-bottom: 15px;
}

.dialog-content a {
    text-decoration: none;
    color: #808080;
}
.goto {
    color: #808080 !important;
    padding:4px;
}
.select-label-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 4px;
    margin: 15px auto;
}

.select-label-captcha-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
    margin: 15px auto;
}
    .select-label-container .select-container {
        border: none;
    }

    .select-label-container label {
        color: #7E8299;
        font-size: 16px;
        padding: 7.5px 15px;
        width: 100%;
    }

    .select-label-container .split {
        background-color: #F3F6F9;
        min-width: 2px;
        width: 2px;
        min-height: 40px;
        display: block;
    }

    .select-label-container .select-container {
        width: 100%;
        color: #7E8299;
    }

.dialog-content .input-text {
    background-color: #fff;
    border-radius: 4px;
    margin: 0;
    border: none;
    padding: 0 15px;
    color: #7E8299;
    font-size: 16px;
    margin: 15px auto;
    width: calc(100% - 30px);
    font-weight: 500;
    outline: none;
}

.select-label-container:hover {
    box-shadow: 0px 0px 10px #3390F029;
}



.positionsAll {
    background-position: top right;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 830px;
    position: relative;
    margin-right: 30px !important;
    /*margin-bottom: 0 !important;*/
    position: relative;
}

    .positionsAll * {
        z-index: 2;
        position: relative;
    }

    .positionsAll .title {
        font-size: 16px;
        text-transform: uppercase;
        color: #3F4254;
        margin-bottom: 5px;
    }

    .positionsAll .content {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        margin-bottom: 30px;
    }

        .positionsAll .content p {
            width: 100%;
            max-width: 380px;
            margin-bottom: 30px;
            margin-right: 15px;

        }

    .positionsAll .details {
        position: absolute;
        /*top: 30px;
        right: 60px;
            */
        text-decoration: none;
        display: flex;
        align-content: center;
        color: #666;
        right: 24px;
    }

        .positionsAll .details img {
            width: 9px;
            height: 17px;
            margin-left: 10px;
        }

        .positionsAll .details span {
            font-size: 16px;
            font-weight: normal;
            border-bottom: 1px dashed transparent;
            display: inline-block;
            line-height: 1;
        }

        .positionsAll .details:hover span {
            border-bottom: 1px dashed #666;
        }

    .positionsAll .positions-icon {
        position: absolute;
        left: 30px;
        bottom: 30px;
        display: block;
    }

.trade-statistics {
    width: 100%;
    max-width: 360px;
    box-shadow: 0px 0px 10px #0000000D;
    background-color: #fff;
    color: #7E8299;
}

    /*.trade-statistics p {
        max-width: 370px;
    }*/

    .trade-statistics .title {
        font-size: 16px;
        text-transform: uppercase;
        color: #7E8299;
        text-align: left;
    }

    .trade-statistics .content > div {
        display: flex;
        flex-flow: row wrap;
        justify-content: flex-start;
        align-content: flex-start;

    }

    .trade-statistics .crypto, .trade-statistics .cfd {
        border-radius: 15px;
        width: 170px;
        height: 210px;
        color: #fff;
        margin-right: 10px;
        font-size: 16px;
        font-weight: 300;
        max-width: 178px;
        position: relative;
        margin-top: 15px;
        background-repeat: no-repeat;
        background-position: center;
    }

    .trade-statistics .cfd {
        margin-right: 0;
    }

        .trade-statistics .crypto *, .trade-statistics .cfd * {
            color: #fff;
        }

        .trade-statistics .crypto h4, .trade-statistics .cfd h4 {
            margin: 30px 15px 15px;
            max-width: 100px;
            text-transform: uppercase;
            font-weight: 300;
            font-size:16px !important;
            text-align:center;
        }

        .trade-statistics .crypto .details, .trade-statistics .cfd .details {
            position: absolute;
            bottom: 30px;
            left: 15px;
            text-decoration: none;
        }

    .trade-statistics .details span {
        font-size: 16px;
        font-weight: normal;
        border-bottom: 1px dashed transparent;
        display: inline-block;
        line-height: 1;
    }

    .trade-statistics .details img {
        width: 9px;
        height: 17px;
        margin-left: 10px;
    }
/* REPORT */
.attach-container {
    margin: 30px 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

    .attach-container ul {
        list-style: none;
        margin: -7.5px;
        padding: 0;
        display: flex;
        flex-flow: row wrap;
        margin-right: 15px;
    }

        .attach-container ul li {
            margin: 7.5px;
        }

    .attach-container .add-button {
        cursor: pointer;
    }

.report-issue-section .title a {
    text-decoration: none !important;
    color: #3F4254;
}

.report-issue-section .title .separator {
    color: #3F4254;
}

@media (max-width: 1920px) {
    .max-width-fixer {
        max-width: 1343px;
    }

    .min-width-fixer {
        max-width: 1643px;
    }
    /* NAV */
    nav .logo {
        max-width: 247px;
        height: 54px;
    }

    nav span.search {
        width: 100%;
        max-width: auto;
        margin: 0 0 0 55px;
    }

    nav.min span.search {
        display: none;
        margin: initial;
        width: initial;
    }
}
@media (min-width: 1895px) {
    .dp_record_content {
        max-width: 342px !important;
    }

}
    @media (max-width: 1895px) {
        .res-handle {
            display: block;
        }

        .Pie-Equity {
            position: absolute;
            left: 21%;
            bottom: 32%;
            width: 20%;
        }

        .Pie-Equity-Bar {
            width: 10%;
            background-color: #7d8095;
            height: 1px;
            position: absolute;
            left: 35.5%;
            bottom: 35%;
            z-index: 10000;
        }

        .pie-Balance-Bar {
            width: 10%;
            background-color: #a6bced;
            height: 1px;
            position: absolute;
            right: 37.5%;
            top: 44%;
            z-index: 10000;
        }

        .pie-Balance {
            position: absolute;
            right: 22%;
            top: 40%;
            width: 20%;
        }

        .block.balances,
        .block.accounts,
        .block.report {
            width: calc(50% - 30px);
            min-width: 310px;
            max-width: initial;
            margin-bottom: 30px;
        }

        .deposits-head {
            max-width: 100%;
        }

        .block.report {
            background-color: #fff;
            background-position: left;
        }

       
        .deposits-record {
            display: inline-block;
            padding-right: 100px;
            width: calc(50% - 130px);
        }

        .positionsAll {
            background-position: top right;
            background-repeat: no-repeat;
            width: calc(50% - 90px);
            max-width: initial;
            position: relative;
            margin-top: 0 !important;
        }

            .positionsAll .content {
                z-index: 5;
            }

            .positionsAll::before {
                content: "";
                display: block;
                width: 100%;
                height: 100%;
                background-color: rgba(255,255,255,.8);
                position: absolute;
                top: 0;
                left: 0;
                border-radius: 4px;
                z-index: 2 !important;
            }


            .positionsAll .positionsallimg {
                /*display : none;*/
                width: 230px !important;
                height: auto !important;
                min-width: auto;
                max-width: initial;
                position: absolute;
                top: 15px;
                right: 15px;
                display: block;
                z-index: 0 !important;
                filter: blur(3px);
                opacity: .2;
            }

            .positionsAll p {
                z-index: 5 !important;
                position: relative;
            }

        .trade-statistics {
            margin: 0 !important;
            width: calc(50% - 90px);
            max-width: initial;
        }
        /* REPORT */
        .report-issue-section .block-1,
        .report-issue-section .block-2 {
            width: 100% !important;
        }

        .report-issue-section .block-2 {
            margin-bottom: 30px;
        }

        .max-width-fixer {
            max-width: 1200px;
        }

        .min-width-fixer {
            max-width: 1500px;
        }
    }

    @media(max-width: 1680px) {
        .Pie-Equity {
            position: absolute;
            left: 20%;
            bottom: 32%;
            width: 20%;
        }

        .pie-Balance {
            position: absolute;
            right: 21%;
            top: 40%;
            width: 20%;
        }

        .max-width-fixer {
            max-width: 1140px;
        }

        .min-width-fixer {
            max-width: 1440px;
        }
    }

    @media(max-width: 1600px) {

        .max-width-fixer {
            max-width: 1050px;
        }

        .min-width-fixer {
            max-width: 1350px;
        }
    }

    @media (max-width: 1580px) {

        .pie-Balance-Bar {
            width: 10%;
            background-color: #a6bced;
            height: 1px;
            position: absolute;
            right: 36%;
            top: 44%;
            z-index: 10000;
        }

        .Pie-Equity {
            position: absolute;
            left: 18%;
            bottom: 32%;
            width: 20%;
        }

        .pie-Balance {
            position: absolute;
            right: 19%;
            top: 40%;
            width: 20%;
        }

        .Pie-Equity-Bar {
            width: 10%;
            background-color: #7d8095;
            height: 1px;
            position: absolute;
            left: 33%;
            bottom: 35%;
            z-index: 10000;
        }

        .trade-statistics .crypto,
        .trade-statistics .cfd {
            width: 100%;
            height: auto;
            margin-right: 30px;
            font-size: 16px;
            max-width: initial;
            position: relative;
            margin-top: 15px;
            /*background-image: none !important;*/
            background-position: center right;
            /*background-color : #75acfe;*/
            border-radius: 4px;
        }

        .trade-statistics .crypto {
            background-color: #7db2fe;
        }

        .trade-statistics .cfd {
            background-color: #222f40;
        }

            .trade-statistics .crypto h4,
            .trade-statistics .cfd h4 {
                margin: 15px 15px 0;
                max-width: initial;
                text-transform: uppercase;
                font-weight: 300;
            }

            .trade-statistics .crypto .details,
            .trade-statistics .cfd .details {
                position: initial;
                bottom: initial;
                left: initial;
                text-decoration: none;
                margin: 0 15px 15px;
                float: right;
                display: block;
            }

        .positionsAll {
            /*background-image: none !important;*/
        }

        .max-width-fixer {
            max-width: 1000px;
        }

        .min-width-fixer {
            max-width: 1260px;
        }
    }
    /*
@media (max-width: 1500) {
    .max-width-fixer {
        max-width: 740px;
    }

    .min-width-fixer {
        max-width: 1220px;
    }
}*/

    /*
@media (max-width: 1613px) {
    .compress_mid {
        zoom: .9;
    }
}

@media (max-width: 1551px) {
    .compress_mid {
        zoom: .8;
    }
}

@media (max-width: 1520px) {
}
*/


    @media (max-width: 1488px) {

        /* HEADER */
        header .title {
            flex-flow: column;
            align-items: flex-start;
        }

        header .breadcrumbs {
            margin: 0;
        }

        /*header .languages a span {
        display: none;
    }*/

        header .languages .lang-arrow {
            margin: 0;
        }

        header .languages .submenu .flag {
            margin-right: 0;
        }

        header .languages .submenu a {
            padding: 10px;
        }

        header .fonts .lang-arrow {
            margin: 0;
        }

        header .fonts .submenu .flag {
            margin-right: 0;
        }

        header .fonts .submenu a {
            padding: 10px;
        }
    }


    @media(max-width: 1440px) {
        .Pie-Equity {
            position: absolute;
            left: 16%;
            bottom: 32%;
            width: 20%;
        }

        .pie-Balance {
            position: absolute;
            right: 17%;
            top: 40%;
            width: 20%;
        }

        .max-width-fixer {
            max-width: 890px;
        }

        .min-width-fixer {
            max-width: 1150px;
        }
    }

    @media(max-width: 1400px) {
        .pie-Balance-Bar {
            width: 13%;
            background-color: #a6bced;
            height: 1px;
            position: absolute;
            right: 33%;
            top: 44%;
            z-index: 10000;
        }

        .Pie-Equity {
            position: absolute;
            left: 14%;
            bottom: 32%;
            width: 20%;
        }

        .pie-Balance {
            position: absolute;
            right: 15%;
            top: 40%;
            width: 20%;
        }

        .Pie-Equity-Bar {
            width: 13%;
            background-color: #7d8095;
            height: 1px;
            position: absolute;
            left: 30%;
            bottom: 35%;
            z-index: 10000;
        }

        .max-width-fixer {
            max-width: 850px;
        }

        .min-width-fixer {
            max-width: 1100px;
        }
    }

    @media (max-width: 1366px) {
        /* NAV */
        .max-width-fixer {
            max-width: 830px;
        }

        .min-width-fixer {
            max-width: 1070px;
        }

        nav .logo {
            max-width: 247px;
            height: 54px;
        }

        nav span.search {
            width: 100%;
            max-width: 256px;
            margin: 30px 0;
        }

        .positionsAll .positionsallimg {
            display: none;
        }
    }

    @media (max-width: 1280px) {

        .max-width-fixer {
            max-width: 740px;
        }

        .min-width-fixer {
            max-width: 1000px;
        }
    }


    @media (max-width: 1200px) {
        .positionsAll .content p {
            justify-content: center;
            text-align: center;
        }

        .positionsAll .title {
            text-align: center !important;
        }

        .positionsAll .content {
            color: #c0afb9;
            justify-content: center;
        }

        .pie-Balance-Bar {
            width: 6%;
            background-color: #a6bced;
            height: 1px;
            position: absolute;
            right: 42%;
            top: 44%;
            z-index: 10000;
        }

        .pie-Balance {
            position: absolute;
            right: 27%;
            top: 40%;
            width: 20%;
        }

        .Pie-Equity-Bar {
            width: 7%;
            background-color: #7d8095;
            height: 1px;
            position: absolute;
            left: 40%;
            bottom: 35%;
            z-index: 10000;
        }

        .Pie-Equity {
            position: absolute;
            left: 26%;
            bottom: 32%;
            width: 20%;
        }

        .home.widgets .block {
            margin-right: 0;
        }

        .deposits-record {
            display: inline-block;
            padding-right: 100px;
            width: calc(100% - 100px) !important;
        }
            /*  change*/
            .deposits-record .content {
                margin: 15px 0;
                width: calc(100% + 100px);
                max-width: initial;
                background-image: none !important;
                background-color: #f0ad48;
            }

        .block.balances,
        .block.accounts,
        .block.report {
            width: 100%;
        }

        .deposits-record {
            display: inline-block;
            padding-right: 100px;
            width: calc(50% - 100px);
            margin-bottom: 30px;
        }

        .positionsAll,
        .trade-statistics {
            width: 100%;
            margin-bottom: 30px !important;
            margin-right: 0 !important;
        }

        .trade-statistics {
            width: 100%;
            color: #3F4254;
        }

        .positionsAll .content p {
            width: 100%;
            max-width: initial;
            margin-right: 0;
            margin-bottom: 15px;
        }

            .positionsAll .content p:last-child {
                margin-bottom: 50px;
            }

        .positionsAll .details {
            position: absolute;
            top: initial;
            bottom: 30px;
            /*right: 30px;*/
            text-decoration: none;
            display: flex;
            align-content: center;
            color: #3F4254;
        }

        .report-issue-section h4 {
            width: 100%;
        }

        .report-issue-section .title span {
            margin: 0 !important;
        }
    }

    @media (max-width: 1166px) {
        header .languages a span {
            display: none;
        }

        .font-span-full {
            display: none;
        }

        .font-span-short {
            display: block;
        }

        .mobile-span-full {
            display: none !important;
        }

        .mobile-lang-show {
            display: block !important;
        }
    }
    /*
@media (max-width: 1152px) {
   
}*/

    @media (max-width: 1152px) {
        .max-width-fixer {
            max-width: 870px;
        }

        .min-width-fixer {
            max-width: 870px;
        }
        /* HEADER */
        header h2 {
            font-size: 26px;
            font-weight: normal;
        }

        header .breadcrumbs {
            font-size: 12px;
        }

        header .login {
            /*  margin: 0 15px;*/
        }

            header .login img {
                margin-right: 0;
            }

            header .login a {
                display: none;
            }
        /* NAV */
        nav {
            position: absolute;
            box-shadow: 0px 0px 10px #00000057;
            position: absolute;
            z-index: 80;
        }

            nav.min {
                box-shadow: initial;
            }
        /* CONTENT */
        body > .content {
            margin-left: 100px;
            width: calc(100% - 100px);
        }

        footer {
            font-size: 12px;
        }
        /* REPORT */
        .report-issue-section .report .icon {
            width: auto;
            height: auto;
            margin-right: 7.5px;
        }

            .report-issue-section .report .icon span {
                position: relative;
                top: initial;
                right: initial;
                width: 30px;
                height: 30px;
                padding: 0;
                display: flex;
                align-items: center;
                text-align: center;
                justify-content: center;
                font-size: 12px;
            }

            .report-issue-section .report .icon img {
                display: none;
            }

        header .loginLogOut,
        header .loginLogOut a {
            display: block;
        }
    }

    @media(max-width: 985px) {
        .break_notification {
            display: block;
        }
    }

    @media(max-width: 920px) {
        .break_notification {
            display: block;
        }

        .Pie-Equity-Bar {
            width: 8%;
            background-color: #7d8095;
            height: 1px;
            position: absolute;
            left: 38%;
            bottom: 35%;
            z-index: 10000;
        }

        .pie-Balance-Bar {
            width: 8%;
            background-color: #a6bced;
            height: 1px;
            position: absolute;
            right: 40%;
            top: 44%;
            z-index: 10000;
        }

        .pie-Balance {
            position: absolute;
            right: 24%;
            top: 40%;
            width: 20%;
        }

        .Pie-Equity {
            position: absolute;
            left: 23%;
            bottom: 32%;
            width: 20%;
        }
    }

    @media (max-width: 776px) {
        .pie-Balance {
            position: absolute;
            right: 20%;
            top: 40%;
            width: 20%;
        }

        .pie-Balance-Bar {
            width: 8%;
            background-color: #a6bced;
            height: 1px;
            position: absolute;
            right: 38%;
            top: 44%;
            z-index: 10000;
        }

        .Pie-Equity {
            position: absolute;
            left: 20%;
            bottom: 32%;
            width: 20%;
        }

        .Pie-Equity-Bar {
            width: 8%;
            background-color: #7d8095;
            height: 1px;
            position: absolute;
            left: 36%;
            bottom: 35%;
            z-index: 10000;
        }

        .date-container {
            width: 60%;
            margin: 15px auto;
        }

            .date-container input[type="date"] {
                width: 30px;
            }

            .date-container .date-selector {
                width: 30px;
            }
    }

    @media (min-width: 768px) {
        nav {
            position: fixed !important;
            /* left: 0;
  top: 0;*/
        }

        #content-main {
            margin-left: 367px;
        }

        .content_min #content-main {
            margin-left: 100px;
        }
        /*.footer{
        margin-left:367px;
    }*/

    }

    @media (max-width: 767px) {
        .Pie-Equity {
            position: absolute;
            left: 20%;
            bottom: 32%;
            width: 20%;
        }

        .pie-Balance {
            position: absolute;
            right: 20%;
            top: 40%;
            width: 20%;
        }

        .pie-Balance-Bar {
            width: 10%;
            background-color: #a6bced;
            height: 1px;
            position: absolute;
            right: 37%;
            top: 44%;
            z-index: 10000;
        }

        .Pie-Equity-Bar {
            width: 8%;
            background-color: #7d8095;
            height: 1px;
            position: absolute;
            left: 36%;
            bottom: 35%;
            z-index: 10000;
        }

        nav {
            position: fixed !important;
            left: 0;
            top: 0;
        }

        .pull-left.res-handle.LastThreerows {
            position: relative;
            left: -64px;
            bottom: 0px;
        }

        div#dipoDiv {
            position: relative;
            left: 380px;
            bottom: 22px;
        }
    }

    @media (max-width: 720px) {



        header .login,
        header .loginLogOut,
        header .loginLogOut a,
        header .languages {
            display: block;
        }

        .pull-left.res-handle.LastThreerows {
            position: relative;
            left: -64px;
            bottom: 0px;
        }

        div#dipoDiv {
            position: relative;
            left: 331px;
            bottom: 22px;
        }
    }

    @media(max-width: 676px) {
        .nortification {
            zoom: .9;
            font-size: 12px;
        }

        .pull-left.res-handle.LastThreerows {
            position: relative;
            left: -64px;
            bottom: 0px;
        }

        div#dipoDiv {
            position: relative;
            left: 281px;
            bottom: 22px;
        }
    }


    @media(max-width: 665px) {
        .blanceEquity {
            zoom: .7;
        }

        .Pie-Equity {
            position: absolute;
            left: 14%;
            bottom: 32%;
            width: 20%;
        }

        .pie-Balance {
            position: absolute;
            right: 15%;
            top: 40%;
            width: 20%;
        }

        .pie-Balance-Bar {
            width: 10%;
            background-color: #a6bced;
            height: 1px;
            position: absolute;
            right: 35%;
            top: 44%;
            z-index: 10000;
        }

        .Pie-Equity-Bar {
            width: 10%;
            background-color: #7d8095;
            height: 1px;
            position: absolute;
            left: 32%;
            bottom: 35%;
            z-index: 10000;
        }

        .pull-left.res-handle.LastThreerows {
            position: relative;
            left: -64px;
            bottom: 0px;
        }

        div#dipoDiv {
            position: relative;
            left: 272px;
            bottom: 22px;
        }
    }

    @media(max-width: 600px) {
        .date-container {
            width: 100%;
            margin: 15px auto;
        }

        .pull-left.res-handle.LastThreerows {
            position: relative;
            left: -64px;
            bottom: 0px;
        }

        div#dipoDiv {
            position: relative;
            left: 212px;
            bottom: 22px;
        }
    }

    @media (max-width: 540px) {
        body {
            zoom: .8;
        }

        .compress {
            zoom: .8;
        }

        .blanceEquity {
            zoom: .7;
        }
    }

    @media (max-width: 540px) {
        .Pie-Equity-Bar {
            width: 12%;
            background-color: #7d8095;
            height: 1px;
            position: absolute;
            left: 30%;
            bottom: 35%;
            z-index: 10000;
        }

        .pie-Balance {
            position: absolute;
            right: 12%;
            top: 40%;
            width: 20%;
        }

        .pie-Balance-Bar {
            width: 12%;
            background-color: #a6bced;
            height: 1px;
            position: absolute;
            right: 33%;
            top: 44%;
            z-index: 10000;
        }

        .Pie-Equity {
            position: absolute;
            left: 11%;
            bottom: 32%;
            width: 20%;
        }

        .pull-left.res-handle.LastThreerows {
            position: relative;
            left: -64px;
            bottom: 0px;
        }

        div#dipoDiv {
            position: relative;
            left: 160px;
            bottom: 22px;
        }
    }

    @media (min-width:430px) and (max-width:530px) {
        div#dipoDiv {
            position: relative;
            left: 160px;
            bottom: 22px;
        }
    }

    @media (max-width: 430px) {

        body {
            zoom: .7;
        }

        header {
            zoom: 1;
            font-size: 16px !important;
        }

        .pull-left.res-handle.LastThreerows {
            position: relative;
            left: -64px;
            bottom: 0px;
        }

        div#dipoDiv {
            position: relative;
            left: 224px;
            bottom: 22px;
        }
    }

    @media (max-width: 416px) {
        header .fonts {
            margin: 0px;
        }

        .showa_aff {
            margin: 0px;
        }

        eader .languages {
            margin: 0px;
        }

        .showa_aff {
            margin: 0px;
        }

        header .languages {
            margin: 0px;
        }

        header .loginLogOut {
            margin: 0px;
        }

        header .login {
            margin: 0px;
        }

        header .languages a {
            margin-left: 20px;
        }

        .userImg {
            display: none !important;
        }

        div#dipoDiv {
            position: relative;
            left: 0px;
        }

        p.withdrawBox {
            padding: 6px 20px;
        }

        .pull-left.res-handle.LastThreerows {
            position: relative;
            left: -64px;
            bottom: 0px;
        }

        div#dipoDiv {
            position: relative;
            left: 196px;
            bottom: 22px;
        }
    }


    @media (max-width: 394px) {

        .pull-left.res-handle.LastThreerows {
            position: relative;
            left: -64px;
            bottom: 0px;
        }

        div#dipoDiv {
            position: relative;
            left: 173px;
            bottom: 21px;
        }

        /*body {
        zoom: .56;
    }*/

        /* header {
        zoom: 1;
        font-size: 12px !important;
    }
    .compress_mid {
        zoom: 1.2;
    }*/
    }


    @media (max-width: 378px) {

        body {
            zoom: .62;
        }

        header {
            zoom: .9;
        }

        .compress_mid {
            zoom: 1;
        }

        .pull-left.res-handle.LastThreerows {
            position: relative;
            left: -64px;
            bottom: 0px;
        }

        div#dipoDiv {
            position: relative;
            left: 215px;
            bottom: 24px;
        }
    }

    .EPSnoRecords, .INTFnoRecords, .RFNDnoRecords {
        font-size: 16px !important;
    }



    /*


*/ /*
.footerDate {
    margin-right: 456px !important;
}*/
