/*
    //
    // BASIC PREDEFINITIONS
    //
*/
header, .o-footer {
    font-family: proxima-nova, sans-serif;
    font-style: normal;
    font-weight: 400;

    box-sizing: border-box;
}
/* end of predefinitions */

/*
    //
    // HEADER SECTION
    //
*/

header {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    padding: 25px 40px 10px;

    background: #f7f7f7;
    border-bottom: 5px solid #000;
    line-height: normal;
}

header.openedMenu {
    background: transparent;
    border: 0;

    border-left: 8px solid #d00f26;
}

/* Header logo */
header .c-logo {
    display: inline-block;
}

header.openedMenu .c-logo {
    flex: 1;
}

header .c-logo img {
    width: 103px;
}

/* Navigation */
header > nav {
    display: inline-block;
    margin-left: 160px;
    flex: 1 0 auto;
    text-align: left;
}

header > nav ul {
    list-style: none;
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex; 
    display: flex;
}

header > nav ul li {
    position: relative;

    display: inline-block;
    width: 200px;
}

header > nav ul li a {
    display: inline-block;

    font-size: 12px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
}

header > nav ul.c-submenu li a {
    text-transform: none;
}

header > nav ul > li > a.active {
    color: #d00f26;
}

header > nav > ul li a.active:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #d00f26;
}

header > nav > ul > li:hover > a {
    color: #d00f26;
    text-decoration: none;
}

header > nav > ul > li > a:hover {
    color: #d00f26;
    text-decoration: none;
}

header > nav > ul li:hover > a:after {
    width: 100%;
}

header > nav ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #d00f26;
    transition: width 0.3s;
} 

header > nav ul > li .c-submenu {
    position: absolute;
    left: -5px;

    display: block;
    visibility: hidden;
    margin-top: 10px;
    padding: 20px 15px;
    background: #fff;
    transition: visibility 0.2s;

    box-shadow: 10px 10px 65px 0 rgba(0, 0, 0, 0.4);
    z-index: 10;
}

header > nav ul > li .c-submenu a:hover {
    color: #d00f26;
    text-decoration: none;
}

header > nav ul > li .c-submenu:hover > a:after {
    width: 100%;
}

header > nav ul > li:hover .c-submenu {
    visibility: visible;
}

header > nav ul > li .c-submenu li {
    width: 250px;
}

header > nav ul > li .c-submenu li a {
    display: inline-block;
    padding: 10px 0;

    font-size: 12px;
    line-height: 1.5;
    transition: none;
}

/* Header buttons */
.c-headerButtons {
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;

}

.c-headerButtons .login {
    position: relative;
}

.c-headerButtons .headerButton {
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex; 
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    width: 43px;
    height: 43px;
    margin: 0 15px;

    color: #000;
    font-weight: 800;
    font-size: 16px;

    border: 1px solid rgba(0, 0, 0, 0.2);
}

.c-headerButtons .headerButton.active {
    color: #d00f26;

    border-color: #d00f26;
}

.c-headerButtons .headerButton span.cross {
    display: inline-block;

    color: #d00f26;
    font-size: 25px;
    font-weight: 100;
    transform: rotate(45deg);
}

/* Login button submenu */
.c-headerButtons .login .subWindow {
    position: absolute;
    right: -5px;

    display: block;
    visibility: hidden;
    width: 230px;
    margin-top: 10px; 
    padding: 20px 15px;

    font-size: 14px;
    color: #000;
    text-align: right;

    background: #fff;
    box-shadow: 10px 10px 65px 0 rgba(0, 0, 0, 0.4);
    transition: visibility 0.2s;
    z-index: 10;
}

.c-headerButtons .login:hover .subWindow {
    visibility: visible;
}

.c-headerButtons .login .subWindow > div:first-child {
    margin-bottom: 8px;
}

.c-headerButtons .login .subWindow a {
    display: inline-block;
    padding: 8px 0;

    font-size: 12px;
    font-weight: 800;
    line-height: 1.5;
    color: #000;
    transition: none;
}

.c-headerButtons .login .subWindow a:hover {
    color: #d00f26;
    text-decoration: none;
}

.c-headerButtons .login .subWindow a:hover::after { 
    width: 100%;
}

.c-headerButtons .login .subWindow a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #d00f26;
    transition: width 0.3s;
}

.c-headerButtons .headerButton:hover {
    border: 1px solid rgba(0, 0, 0, 0.6);
    text-decoration: none;
}


/* 

--------------------------------

End of header section 

--------------------------------

*/

/*
    //
    // MAIN PART
    //
    // Dashboard section
    //
*/

@media (min-width: 1200px) {
    .container {
        max-width: 1440px;
        width: 100%;
    }
}

main {
    display: block;
    padding: 20px 0;
}

main > .container {
    position: relative;
}

main .row {
    position: relative;
}

main h1 {
    display: block;
    padding-bottom: 0px;
    margin-top: -10px;

    font-size: 80px;
    font-weight: 900;
    line-height: 1.11;
    color: #d00f26;
}

main h1.c-loginHeader {
    font-size: 72px;
}

main h2 {
    font-size: 28px;
    font-weight: 900;
    color: #000;
}

main section {}


main .background {
    position: absolute;

    height: calc(100% + 30px);
    width: 100%;
    top: -20px;
    left: 0;
}

main .background .line {
    position: relative;

    float: left;
    width: 12%;
    height: 100%;

    border-left: 1px solid #f3f3f3;
}

main .background.mainmenu .line {
    width: 25%;
    height: calc(100% - 100px);
}

main .background .line .blackLine {
    position: absolute;
    bottom: 70px;
    left: -2px;

    width: 5px;
    height: 50px;

    background-color: black;
    z-index: 100;
}

/* Opened menu line */
main.openedMenu .background .line .blackLine {
    width: 3px;
    height: 80px;
}

main .background .line:last-child {
    border-right: 1px solid #f3f3f3;
}

/* Opened Main menu cols */
main .o-menuCols {
    position: relative;
    top: -140px;
    left: -15px;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

main .o-menuCols .c-menuCol {
    position: relative;

    display: inline-block;
    width: calc(33% - 11px);
    height: 100%;
}

main .o-menuCols .c-menuCol:hover {
    background: #f7f7f7;
}

main .o-menuCols .c-menuCol .header {
    position: absolute;
    left: 0px;
    bottom: calc(100% - 250px);

    font-size: 18px;
    color: #d00f26;
    font-weight: 600;
}

main .o-menuCols .c-menuCol .links {
    position: relative;
    top: 300px;
}

main .o-menuCols .c-menuCol .links  a {
    display: inline-block;
    padding: 25px 0;

    color: #000;
}

main .o-menuCols .c-menuCol:first-child .links  a {
    font-weight: 600;
}

main .o-menuCols .c-menuCol .links a:hover {
    color: #000;
    text-decoration: none;
}

main .o-menuCols .c-menuCol .links a:hover::after { 
    width: 100%;
}

main .o-menuCols .c-menuCol .links a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #d00f26;
    transition: width 0.3s;
}

main .o-menuCols .c-menuCol .contacts {
    position: absolute;
    bottom: 150px;
    left: 0;
}

main .o-menuCols .c-menuCol .contacts a {
    display: block;

    color: #000;
    font-weight: 600;
    line-height: 1.5;
}

main .o-menuCols .c-menuCol .contacts a:last-child {
    color: #d00f26;
}

/* Left Column */
main section.o-leftColumn {
    padding-left: 0;

}

main section.o-leftColumn h2 {
     padding: 25px 0;
}

main section.o-leftColumn .c-borderedLink {
    display: inline-block;
    margin: 8px 0;
    padding: 27px 16px 27px;
    /*height: 80px;*/
    width: 100%;
    max-width: 270px;

    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    color: #000;
    text-decoration: none;

    border: 1px solid #000;
}

main section.o-leftColumn .c-borderedLink:hover {
    color: #d00f26;
    text-decoration: none;
    
    border-color: #d00f26;
}


/* Center Column */
main section.o-centerColumn .c-whiteBox {
    display: block;
    padding: 10px 20px;

    background: #fff;
    box-shadow: 10px 10px 65px 0 rgba(0, 0, 0, 0.4);
}

main section.o-centerColumn .c-whiteBox:not(:first-child) {
    margin-top: 40px;
}

main section.o-centerColumn .c-whiteBox a {
    color: #d00f26;
    text-decoration: none;
}

main section.o-centerColumn .c-whiteBox a:hover {
    text-decoration: underline;
}

main section.o-centerColumn .c-whiteBox .bottomLink {
    padding-top: 10px;
}

main section.o-centerColumn .c-whiteBox table {
    width: 100%;
    margin: 10px 0;
    border: none;

    font-size: 14px;
    color: #000;
}

main section.o-centerColumn .c-whiteBox table tr:first-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 3px;
}

main section.o-centerColumn .c-whiteBox table tr:first-child th {
    user-select: none;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    border: none;
}

.headerLink, .headerLink:hover, .headerLink:focus {
    color: rgba(0, 0, 0, 0.5);
}

main section.o-centerColumn .c-whiteBox table tr td {
    line-height: 1.5;
    font-weight: 400;
    border: none;
}

/* Right column */
main section.o-rightColumn {}

main section.o-rightColumn .c-newsBox {
    display: block;
    padding: 25px 40px;

    border: 1px solid #d00f26;
}

main section.o-rightColumn .c-newsBox.empty {
    border-color:  rgba(0, 0, 0, 0.1);
}

main section.o-rightColumn .c-newsBox.empty h2 {
    color:  rgba(0, 0, 0, 0.2);
}

main section.o-rightColumn .c-newsBox .added {
    font-size: 16px;
}

main section.o-rightColumn .c-newsBox .mainContent {
    font-size: 20px;
}

/* ------- end of dashboard section ---------- */

/*
    //
    // Login Box section
    //
*/

.c-loginBox {
    position: relative;

    display: block;
    width: 560px;
    padding: 35px;
    margin: 100px auto;

    border: 1px solid #d00f26;
}

.c-loginBox form {
    display: block;
    width: 100%;
}

/* Text input styles */
.c-loginBox input.textInput {
    position: relative;

    display: inline-block;
    width: 100%;
    padding: 10px 15px;
    margin: 8px 0;

    font-size: 14px;
    font-weight: 800;
    color: #000;

    border: 0;
    background-color: rgba(0, 0, 0, 0.05);
    outline: none;
}

.c-loginBox input.textInput::placeholder {
    color: rgba(0, 0, 0, 0.5);
}


.c-loginBox input.textInput::-webkit-input-placeholder { 
    color: rgba(0, 0, 0, 0.5);
}

.c-loginBox input.textInput::-moz-placeholder { 
    color: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.c-loginBox input.textInput:-ms-input-placeholder { 
    color: rgba(0, 0, 0, 0.5);
}

.c-loginBox input.textInput:-moz-placeholder {
    color: rgba(0, 0, 0, 0.5);
}

/* Error textinput */
.c-loginBox .inputSpan {
    position: relative;
}

.c-loginBox .inputSpan.error > input.textInput {
    border-bottom: 1px solid #d00f26;
}

.c-loginBox .inputSpan.error:after {
    position: absolute;
    right: 5px;
    top: -6px;
    content: "\f06a ";
    font-family: FontAwesome;
    color: #d00f26;
    font-size: 20px;
}

.c-loginBox .errorMess {
    display: block;
    
    font-size: 12px;
    color: #d00f26;
}

/* Checkbox styles */
.c-loginBox .checkLabel {
    margin-top: 20px;

    cursor: pointer;
}

.c-loginBox .checkInput {
    position: relative;

    display: inline-block;
    width: 20px;
}

.c-loginBox .checkInput label {
    position: absolute;
    top: 0;
    left: 0;

    width: 16px;
    height: 16px;
    
    cursor: pointer;

    border-radius: 2px;
    box-shadow: 0 0 2px #424242;
}

.c-loginBox .checkInput label:after {
    position: absolute;
    content: '';
    top: 3px;
    left: 2px;
    width: 13px;
    height: 6px;

    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    background: transparent;
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
.c-loginBox .checkInput label:hover::after {
    opacity: 0.3;
}

.c-loginBox .checkInput input[type=checkbox] {
    visibility: hidden;
}

.c-loginBox .checkInput input[type=checkbox]:checked + label {
    background: #d00f26;
    box-shadow: none;
}

.c-loginBox .checkInput input[type=checkbox]:checked + label:after {
    opacity: 1;
}

/* Button submit */
.c-loginBox input[type=submit] {
    display: block;
    width: 240px;
    padding: 7px 14px;
    margin: 20px 0 40px;

    font-size: 20px;
    font-weight: 800;
    color: #d00f26;
    text-align: left;
    cursor: pointer;

    border: 1px solid #000;
    background: #fff;
}

.c-loginBox input[type=submit]:hover {
    color: #fff;

    background: #d00f26;
    border-color: #d00f26;
}

/* Bottom link */
.c-loginBox .forgottenPassLink {
    position: absolute;
    bottom: 10px;

    font-size: 14px;
    color: #000;
    text-decoration: underline;
}

.c-loginBox .forgottenPassLink:hover {
    color: #d00f26;
}

/* ------- end of login box section ------- */


/*
    //
    // FILTERED TABLES PAGE
    //
*/

main.o-filrteredTables {}

main.o-filrteredTables .o-mainButtons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
}

main.o-filrteredTables .o-mainButtons .c-borderedLink {
    display: inline-block;
    margin: 5px 20px 5px 0;
    padding: 13px 16px 0;
    height: 50px;
    width: 100%;
    max-width: 210px;

    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    color: #000;
    text-decoration: none;

    border: 1px solid #000;
    overflow: hidden;
    text-overflow: ellipsis;
}

main.o-filrteredTables .o-mainButtons .c-borderedLink.active {
    background: #d00f26;
    color: #fff;
    box-shadow: 10px 5px 50px 0px rgba(0, 0, 0, 0.3);

    border: 1px solid transparent;
}

main.o-filrteredTables .o-mainButtons .c-borderedLink:not(.active):hover {
    color: #d00f26;
    text-decoration: none;
    
    border-color: #d00f26;
}

/*
    // Filters area
*/

main.o-filrteredTables .o-filtersArea {
    margin: 30px 0 10px 0;
}

/* Left inputs */
main.o-filrteredTables .o-filtersArea section:first-child {
    padding-left: 0;
}

main.o-filrteredTables .o-filtersArea .c-namedInputBox {
    position: relative;

    display: block;
}

main.o-filrteredTables .o-filtersArea .c-namedInputBox:not(:first-child) {
    margin-top: 16px;
}

main.o-filrteredTables .o-filtersArea .c-namedInputBox .inputName {
    user-select: none;
    position: absolute;

    top: -9px;
    left: 15px;

    padding: 3px;

    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 1.5;
    color: rgba(0, 0, 0, 0.5);

    background: #fff;
}

main.o-filrteredTables .o-filtersArea .c-namedInputBox input[type="text"] {
    padding: 10px 12px 6px;

    font-size: 16px;
    color: #000;

    border: 1px solid #ccc;
    outline: 0;
}

main.o-filrteredTables .o-filtersArea .c-namedInputBox input[type="text"]:focus {
    border: 1px solid #d2071d;
}

main.o-filrteredTables .o-filtersArea .c-deteleFiltersButton {
    display: block;
    margin: 20px 0;
    padding: 8px 30px;

    font-size: 20px;
    font-weight: 600;
    color: #b3b3b3;
    cursor: pointer;

    border: 1px solid #ccc;
    background: transparent;
}

main.o-filrteredTables .o-filtersArea .c-deteleFiltersButton:hover {
    opacity: 0.8;
}

/* Middle col */
main.o-filrteredTables .o-filtersArea h2 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
}

/* Date inputs */
main.o-filrteredTables .o-filtersArea .c-dateInputs {
    display: block;
    margin: 0 0 5px;
}

main.o-filrteredTables .o-filtersArea .c-dateInputs input[type="text"].form-control {
    display: inline-block;
    padding: 10px 5px 10px 38px;
    width: 170px;

    font-size: 14px;
    color: #000;

    background: rgba(0, 0, 0, 0.05);
    border: 0;
    border-bottom: 1px solid transparent;
    border-radius: 0;
    outline: 0;
}

main.o-filrteredTables .o-filtersArea .c-dateInputs input[type="text"].form-control:focus {
    border-bottom: 1px solid #000;
    box-shadow: 0 0 0 0 transparent;
}

main.o-filrteredTables .o-filtersArea .c-dateInputs .inputBox {
    position: relative;

    display: inline-block;
}

main.o-filrteredTables .o-filtersArea .c-dateInputs .inputBox:first-child {
    margin-right: 16px;
}

main.o-filrteredTables .o-filtersArea .c-dateInputs .inputBox:before {
    position: absolute;
    left: 10px;
    top: 4px;
    content: "\f073 ";
    font-family: FontAwesome;
    font-size: 18px;
}

.datepicker.dropdown-menu {
    padding: 10px;
}

.datepicker table tr td.active:active, 
.datepicker table tr td.active.highlighted:active, 
.datepicker table tr td.active.active, 
.datepicker table tr td.active.highlighted.active{
    background-color: #d00f26 !important;
    border-color: #d00f26 !important;
    background-image:  linear-gradient(to bottom, #d00f26, #d00f26) !important;
}

.datepicker table tr td.active:active:hover, .datepicker table tr td.active.highlighted:active:hover, .datepicker table tr td.active.active:hover, .datepicker table tr td.active.highlighted.active:hover, .datepicker table tr td.active:active:focus, .datepicker table tr td.active.highlighted:active:focus, .datepicker table tr td.active.active:focus, .datepicker table tr td.active.highlighted.active:focus, .datepicker table tr td.active:active.focus, .datepicker table tr td.active.highlighted:active.focus, .datepicker table tr td.active.active.focus, .datepicker table tr td.active.highlighted.active.focus {
    background-color: #d00f26 !important;
    border-color: #d00f26 !important;
}

/* Right col */

/* Checkbox styles */
.o-checkboxesBox .checkLabel {
    display: block;
    width: 100%;
    margin-top: 20px;

    font-size: 14px;
    font-weight: 400;
    color: rgba(0,0,0,0.7);

    cursor: pointer;
}

.o-checkboxesBox .checkInput {
    position: relative;

    display: inline-block;
    width: 20px;
}

.o-checkboxesBox .checkInput label {
    position: absolute;
    top: 0;
    left: 0;

    width: 16px;
    height: 16px;
    
    cursor: pointer;

    border-radius: 2px;
    box-shadow: 0 0 2px #424242;
}

.o-checkboxesBox .checkInput label:after {
    position: absolute;
    content: '';
    top: 3px;
    left: 2px;
    width: 13px;
    height: 6px;

    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    background: transparent;
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
.o-checkboxesBox .checkInput label:hover::after {
    opacity: 0.3;
}

.o-checkboxesBox .checkInput input[type=checkbox] {
    visibility: hidden;
}

.o-checkboxesBox .checkInput input[type=checkbox]:checked + label {
    background: #d00f26;
    box-shadow: none;
}

.o-checkboxesBox .checkInput input[type=checkbox]:checked + label:after {
    opacity: 1;
}

.c-applyFiltersButton {
    display: inline-block;
    margin: 20px 0;
    padding: 8px 30px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    background: #d00f26;
    border: 0;
    outline: 0;
}
.c-applyFiltersButton:hover {
    opacity: 0.85;
}

/*GRIDVIEW*/
/* Table Box */
.c-tableBox {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 10px 0 60px;
    padding: 10px 75px;
    background: #fff;
    box-shadow: 20px 30px 50px 20px rgba(0, 0, 0, 0.3);
}
.c-tableBox table {
	width: 100%;
    border: none;
}
.c-tableBox table tr:nth-child(even) {
	background: rgba(0,0,0,0.05);
}
/*.c-tableBox table tr:not(:first-child):hover {
	background: #d00f26;
}
.c-tableBox table tr:not(:first-child):hover td, .c-tableBox table tr:not(:first-child):hover td span, .c-tableBox table tr:not(:first-child):hover td a {
	color: #fff !important;
}
.c-tableBox table tr:not(:first-child):hover td input[type=submit] {
	color: #fff;
	border-color: #fff;
}*/
.c-tableBox table .centered {
	text-align: center;
}
.c-tableBox table th {
    user-select: none;
	padding: 5px 0;
	font-size: 15px;
    font-weight: normal;
	line-height: 1.5;
	color: rgba(0,0,0,0.5);
    border: none;
}
.c-tableBox table td {
	padding: 8px 0;
    line-height: normal;
    /*font-size: 16px;*/
    border: none;
}
.c-tableBox table td:first-child, .c-tableBox table th:first-child {
	padding-left: 20px;
}
.c-tableBox table td a.referenceLink {
	color: #d00f26;
	/*font-size: 16px;*/
	font-weight: 600;
}
.gridViewButton {
    display: block;
    padding: 8px 30px;
    margin: 0 auto;
    font-size: 13px;
    font-weight: 600;
    color: #b3b3b3;
    cursor: pointer;
    border: 1px solid #ccc;
    background: transparent;
}
.gridViewButton:hover {
    color: #d00f26;
    border-color: #d00f26;
}

.gridViewButtonRed {
    display: block;
    padding: 8px 30px;
    margin-bottom: 5px;
    background: #d2071d;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border-radius: 0;
}

.gridViewButtonRed:hover,
.gridViewButtonRed:focus {
    background: #ab0618;
    color: #fff;
}


/* Table box bottom part */
.c-tablePagerBox {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 30px 0 0;
    padding-left: 0px;
    
    font-size: 14px;
}
.c-tablePagerBox:last-child {
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.c-tablePagerBox .c-tablePagerButton {
	display: inline-block;
	padding: 8px 15px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	cursor: pointer;
	background: #d00f26;
	border: 0;
	outline: 0;
}
.c-tablePagerBox .c-tablePagerButton.disabled {
	color: #ccc;
	background: #fff;
	border: 1px solid #ccc;
}
.c-tablePagerBox .c-tablePagerButton:hover {
	opacity: 0.85;
}
/* Pager */
.c-tablePagerBox .c-pager {
	display: inline-block;
	padding: 0 10px;
	margin: 0;
	list-style: none;
}
.c-tablePagerBox .c-pager li {
	display: inline-block;
	padding: 0 5px;
}
.c-tablePagerBox .c-pager li a {
	color: #000;
	font-size: 16px;
	font-weight: 600;
}
.c-tablePagerBox .c-pager li a.active {
	color: #d00f26;
}
/*GRIDVIEWEND*/
/* 
---------------------------

end of main part 

----------------------------
*/

/*
    //
    // FOOTER
    //
*/

.o-footer {
    position: relative;

    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex; 
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    align-items: center;
    -webkit-aling-items: center;
    padding-top: 100px;

    z-index: 5;
}

.o-footer ul {
    display: block;
    margin: 0 0 0 120px;
    flex: 1;

    list-style: none;
}

.o-footer ul li {
    display: inline-block;
    margin-right: 70px;
}

.o-footer ul li a {
    display: inline-block;

    font-size: 12px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
}

.o-footer ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #d00f26;
    transition: width 0.3s;
}

.o-footer ul li a:hover {
    color: #d00f26;
}

.o-footer ul li a:hover::after {
    width: 100%;
}
/* end of footer */



/* White Table */

.c-whiteTable {
    width: 100%;
    margin: 10px 0;
    border: none;

    font-size: 13px;
    color: #000;
}

.c-whiteTable tr:first-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 3px;
}

.c-whiteTable tr:first-child th {
    user-select: none;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    border: none;
}

.c-whiteTable tr td {
    line-height: 1.5;
    font-weight: 400;
    border: none;
}

/* End of White Table */